Published onJune 16, 2026Offset vs Cursor Pagination in EF Core.netcsharpentity-frameworkaspnet-coreminimal-apiperformanceWhy offset pagination falls apart at scale, and how cursor pagination keeps your API fast with millions of rows.
Published onApril 18, 2026EF Core IEntityTypeConfiguration - Clean Up Your DbContext in .NET.netcsharpentity-frameworkaspnet-coreperformanceHow to replace a bloated OnModelCreating method with separate entity configuration classes using IEntityTypeConfiguration<T>.
Published onApril 11, 2026EF Core Database First - Scaffold a DB Context from an Existing Database.netcsharpentity-frameworkaspnet-coredatabasescaffoldsql-serverStop writing models by hand - let EF Core do it for you with the Database First scaffolding approach.
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