From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 5 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-5/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 5 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-5/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured
From the .NET blog...
.NET 11 Preview 5 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-5/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured

If you've built an ASP.NET Core API or list view backed by Entity Framework Core, you've almost certainly written something like this: var page = await _db.Orders .OrderBy(o => o.Id) .Skip((pageNumber - 1) * pageSize) .Take(pageSize) .ToListAsync(); It works. It matches the page-number UI most users expect. Every EF Core tutorial uses it. It's also
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured
From the .NET blog...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured
From the archives...
Past Is Not Prologue - #ScifiDevCon2025
https://barretblake.dev/posts/development/2025/05/past-is-not-prologue-scifidevcon2025/ #youtube #EntityFramework #SciFiDevCon
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 3 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-3/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured
From the .NET blog...
.NET 11 Preview 3 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-3/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured
How to Delete and Update Millions of Rows in EF Core Without Loading a Single Entity | by Chris Woodruff
#dotnet #entityframework #efcore #csharp #data #database #orm

The Code Every Developer Has Written and Regretted Most EF Core performance disasters are not exotic edge cases. They get written in the first sprint, look clean in code review, and only reveal themselves when row counts hit production scale. The pattern below has ended more than a few on-call rotations badly: // Looks fine.