.NET 10 Preview 7 adds XAML generator
Briefly

Entity Framework Core 10 introduces a new default translation mode for parameterized collections, translating each value into its own scalar parameter. This mode allows changes in collection values without altering SQL code, preventing performance issues like cache misses. Additionally, .NET 10 Preview 7 introduces WebSocketStream, an API that simplifies WebSocket usage by providing a Stream-based abstraction, thereby addressing complexities present in traditional APIs. WebSocketStream simplifies handling buffering, framing, and encoding which makes it conducive for applications using streaming or text-based protocols.
With Entity Framework Core 10, a new default translation mode for parameterized collections is introduced, enabling each collection value to be translated into its own scalar parameter.
This new mode prevents cache misses and performance issues by allowing collection values to change without altering the generated SQL code.
WebSocketStream, introduced in .NET 10 Preview 7, simplifies WebSocket usage by providing a Stream-based abstraction, addressing complexities in traditional low-level WebSocket APIs.
The new WebSocketStream API facilitates easier handling of buffering, framing, encoding, and decoding in WebSocket communications, especially for streaming or text-based protocols.
Read at InfoWorld
[
|
]