Using Moq to Create Fluent Test Classes in ASP.NET 5.0
Using Moq, we'll create a set of "fluent" mocked classes, which will clean up our tests by allowing us to "chain" methods being mocked.
Using Moq, we'll create a set of "fluent" mocked classes, which will clean up our tests by allowing us to "chain" methods being mocked.
Let's build a complex but useful architecture called the Repository-Service pattern to clearly enforce separation of concerns.
I hate laundry, and particularly sorting socks. Let's make my hate a little less strong by learning how to sort socks efficiently with C#.
Let's take an existing synchronous ASP.NET web app and begin refactoring it to use asynchronous programming. Sample C# project included.
Let's learn how asynchronous programming works in ASP.NET, and what we should remember when attempting to implement it.