EF Core EF Core Query Tags and Alternatives UPDATE: Upgraded samples to EF Core 5. (you can find old sample code in this branch) When doing a performance review on client applications (and my friend's apps), I often see issues related
EF Core Handling EF Core migrations in a team Entity Framework Core has a good migration story for the Database, however it's not perfect, especially in a large team where DB schema changes are frequent. All migrations are increamental based on the
.NET Core .NET Core complex EF Core unit testing When writing unit tests for EF Core we can use InMemoryDatabase so that we don't have to create mock repositories. But sometimes we need to test functionalities that are not supported in in-memory-database.