Topics include:
- .NET Core
- Entity Framework Core
- Unit testing
- Test Driven Development
- Mocking
- In-memory databases
Source code available at: https://github.com/JasperKent/InMemoryDatabase
Topics include:
Ever called a function passing seconds instead of milliseconds? Or metres instead of feet? Here's a robust way to avoid problems with units.
Topics include:
The pipeline works very differently in ASP.NET Core from ASP.NET Framework. Here we examine one aspect of the differences.
Topics include:
The dynamic keyword allows decisions about object type to be deferred until runtime. One benefit of this is that we can make method overloading decisions at runtime rather than having them locked in by the compiler.
Topics include:
The two interfaces IQueryable and IEnumerable seem almost interchangeable. Here I discuss one of the key differences, and how it can have a serious effect on performance.
Topics include:
How many developers does it take to change a lightbulb? With the State pattern, not very many. Topics include: The State Pattern Design Pa...