Building a robust CQRS database with EF Core and Cosmos DB
Back in 2017 I wrote about a system I built using EF Core 2.0 which used … Continue reading Building a robust CQRS database with EF Core and Cosmos DB
Back in 2017 I wrote about a system I built using EF Core 2.0 which used … Continue reading Building a robust CQRS database with EF Core and Cosmos DB
This is the second in the series on migrating a database using Entity Framework Core (EF … Continue reading Handling Entity Framework Core database migrations in production – Part 2
Andrew Lock wrote an excellent series called “Running async tasks on app startup in ASP.NET Core” … Continue reading Handling Entity Framework Core database migrations in production – Part 1
There is a concept in Domain-Drive Design (DDD) called the anti-corruption layer which, according to Microsoft … Continue reading Wrapping your business logic with anti-corruption layers – NET Core
In the first part of this series I looked at authorization in ASP.NET Core, but I … Continue reading Part 2: Handling data authorization in ASP.NET Core and Entity Framework Core
When you are writing Entity Framework Core (EF Core) queries (i.e. reading data from the database) … Continue reading Building high performance database queries using Entity Framework Core and AutoMapper
On my article “Creating Domain-Driven Design entity classes with Entity Framework Core” @ardalis commented that “your … Continue reading Three approaches to Domain-Driven Design with Entity Framework Core
I’m a big fan of Domain-Driven Design (DDD) and build all my Entity Framework Core (EF … Continue reading Pragmatic Domain-Driven Design: supporting JSON Patch in Entity Framework Core
This article is about ASP.NET Core 2.1 Web API code and ways to write code that … Continue reading How to write good, testable ASP.NET Core Web API code quickly
This article is about how to catch SQL errors, like unique index violations, and turning them … Continue reading Entity Framework Core – validating data and catching SQL errors