DATABASES Signal 424
.NET 11 Preview 7 introduces labeled break and continue, Blazor circuit pausing, and EF Core query rewrites
Microsoft released .NET 11 Preview 7, adding labeled break and continue to C#, Blazor circuit pausing and CacheView to ASP.NET Core, and SQL translation for int.Parse to EF Core.
The preview introduces language-level control flow changes in C# that simplify nested loops, while ASP.NET Core gains resource-saving features for Blazor server circuits. EF Core query translation improvements could reduce database load for common parsing and grouping operations.
Written by elseif from the cluster below · every claim links back to a sourceThe three things worth knowing
C# now supports labeled break and continue statements to exit or continue outer loops directly from inner constructs.
ASP.NET Core Blazor can pause hidden browser tabs to release server resources and cache rendered subtrees with the new CacheView component.
Entity Framework Core translates int.Parse to a SQL Server CAST and rewrites several GroupBy patterns into single joins.
THE CLUSTER
↗