
EF Core IEntityTypeConfiguration - Clean Up Your DbContext in .NET
How to replace a bloated OnModelCreating method with separate entity configuration classes using IEntityTypeConfiguration<T>.

How to replace a bloated OnModelCreating method with separate entity configuration classes using IEntityTypeConfiguration<T>.

Stop writing models by hand - let EF Core do it for you with the Database First scaffolding approach.

Stop writing the same HttpClient boilerplate for every external API endpoint - there's a cleaner way.

Stored procedures - when raw SQL belongs in your database, not your C# code.

Your app is making 1501 SQL queries per request - and the code looks completely fine. Learn how to identify and fix the N+1 problem and Cartesian explosion in EF Core.

Deploy your ASP.NET Core app automatically to IIS on an Azure VM - zero manual steps required.

From zero to a working CI pipeline that builds your .NET app, runs unit tests, and produces a deployable artifact - step by step.

Learn how to replace slow EF Core bulk operations with Entity Framework Extensions for up to 39x faster inserts, updates, deletes, and merges.

Add authentication to your .NET 10 Web API in minutes using the built-in Identity API endpoints - no custom controllers needed.