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 onJune 9, 2026.NET 10 File-Based Apps - Best Way to Script in C#.netcsharpdotnet10minimal-apiscriptingaspnet-coreperformance.NET 10 file-based apps just changed how we write scripts in C# - no .csproj, no boilerplate, just code.
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 onMarch 14, 2026How to Set Up a Release Pipeline for ASP.NET Core in Azure DevOps.netcsharpazure-devopsci-cdaspnet-corepipelinesiisdevopsDeploy your ASP.NET Core app automatically to IIS on an Azure VM - zero manual steps required.
Published onMarch 7, 2026Setup CI Build Pipeline in Azure DevOps for ASP.NET Core Web API.netcsharpazure-devopsci-cdaspnet-corepipelinesdevopsFrom zero to a working CI pipeline that builds your .NET app, runs unit tests, and produces a deployable artifact - step by step.
Published onFebruary 21, 2026Authentication using ASP.NET Core Identity (.NET 10)identity.netminimal-apiasp.net-coreauthenticationAdd authentication to your .NET 10 Web API in minutes using the built-in Identity API endpoints - no custom controllers needed.