Wednesday 13 January 2021

EF Core In-Memory Database

Writing a mock repository for unit testing can require a large amount of coding that simply duplicates the features of a real database. Nowadays, the Entity Framework Core In-Memory database does the work for you.

Topics include:

  • .NET Core
  • Entity Framework Core
  • Unit testing
  • Test Driven Development
  • Mocking
  • In-memory databases

No comments:

Post a Comment

The State Pattern

  How many developers does it take to change a lightbulb? With the State pattern, not very many. Topics include: The State Pattern Design Pa...