Published onApril 4, 2026Refit - The Better Way to Consume APIs in .NET.netcsharpaspnetcorerefithttpclientapiStop writing the same HttpClient boilerplate for every external API endpoint - there's a cleaner way.
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 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
Published onFebruary 6, 2026Minimal API Validation in .NET 10 - Built-In Support with Data Annotationsminimal-apis.netcsharpLearn how .NET 10 introduces built-in validation for Minimal APIs using Data Annotations - no extra libraries needed
Published onNovember 17, 2025AddSingleton vs AddScoped vs AddTransient in ASP.NET Core Dependency Injectionioc.netcsharpOverview of three main registration methods in DI container of .NET applications
Published onDecember 20, 2024Factory Design Pattern in C#design-patterns.netcsharpOverview of Factory Design Pattern in C# with real world example and it's benefits