Published onMarch 27, 2026Stored Procedures with Entity Framework Core in .NET.netcsharpentity-frameworkaspnet-coresql-serverperformanceminimal-apiStored procedures - when raw SQL belongs in your database, not your C# code.
Published onMarch 21, 2026EF Core Performance - N+1, Cartesian Explosion and How to Fix Both.netcsharpentity-frameworkefcoreperformancesqlaspnet-coreYour 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.
Published onFebruary 28, 2026Insane Performance Boost in EF Core using Entity Framework Extensions.netcsharpentity-frameworkperformancebulk-operationsefcoreLearn how to replace slow EF Core bulk operations with Entity Framework Extensions for up to 39x faster inserts, updates, deletes, and merges.
Published onFebruary 14, 2026EF Core - Lazy Loading, Eager Loading, and Explicit Loadingentity-framework.netcsharpLearn the three fundamental loading strategies in Entity Framework Core - Lazy/Eager/Explicit Loading