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.