All articles

#performance

3 articles tagged performance

Aug 14, 2026.NET

LINQ Performance: When It's Slow and What to Do About It

LINQ performance best practices from production .NET: multiple enumeration, Count vs Any, allocation costs, and when a plain loop beats a query.

Advanced5 min read
Aug 7, 2026.NET

Fixing the N+1 Query Problem in Entity Framework Core

Diagnose and fix the EF Core N+1 query problem with Include, projections and split queries — plus how to catch lazy-loading traps before production.

Intermediate4 min read
Jul 21, 2026.NET

Async/Await in C#: 8 Mistakes Even Experienced Developers Make

Learn the most common async await C# mistakes — async void, .Result deadlocks, missing ConfigureAwait and more — with fixes from production code.

Intermediate5 min read