Lets Build a Clean Code

Thoughts, stories and ideas.

Latest

โœจ Hidden Gems: 2 Powerful but Less Used EF Core LINQ Methods (2025 Update)

โœจ Hidden Gems: 2 Powerful but Less Used EF Core LINQ Methods (2025 Update)

Go beyond the basics โ€” Master these underrated EF Core features to write high-performance, production-grade applications! ๐Ÿš€ 1๏ธโƒฃ ExecuteUpdateAsync() โ€” Bulk Update Without Loading Entities ๐Ÿ› ๏ธ Introduced in EF Core 7 โ€” Perform direct SQL UPDATE operations without fetching entities into memory. ๐Ÿ”น Usage: await dbContext.Users .Where(u => u.LastLogin < DateTime.UtcNow.AddYears(

By Bharath Kumar J C