.NET

.NET

๐——๐—ฒ๐—ฐ๐—น๐—ฎ๐—ฟ๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—ฃ๐—ฎ๐˜๐˜๐—ฒ๐—ฟ๐—ป โ€” A Friendly Approach to Cleaner .NET Code

One of the patterns I keep coming back to in real-world .NET projects is the Declaration Pattern.Itโ€™s simple, expressive, and helps your code reflect intent instead of getting bogged down in control flow. If youโ€™ve ever looked at a messy method full of if/else branching and repeated logicโ€ฆ youโ€™ll appreciate how declarative design brings clarity. […]

AsSplitQuery in EF Core
.NET, Entity Framework Core

AsSplitQuery in EF Core

When working with Entity Framework Core and including multiple related entities, you may notice performance degradation or unexpected SQL behavior. One hidden gem to address this is the AsSplitQuery() methodโ€”a powerful tool that gives you greater control over how EF Core executes your queries. In this article, weโ€™ll explore: The Problem: Cartesian Explosion with Include

Scroll to Top