From 76a60072624616e9b58c5735ae3a107d0e2e776a Mon Sep 17 00:00:00 2001 From: maumar Date: Tue, 4 Mar 2025 18:19:17 -0800 Subject: [PATCH] added mention of another improvement --- release-notes/10.0/preview/preview2/efcore.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/release-notes/10.0/preview/preview2/efcore.md b/release-notes/10.0/preview/preview2/efcore.md index bc83378d93..f1c35e7665 100644 --- a/release-notes/10.0/preview/preview2/efcore.md +++ b/release-notes/10.0/preview/preview2/efcore.md @@ -3,6 +3,7 @@ .NET 10 Preview 2 includes new Entity Framework Core features & enhancements: - [Support for the .NET 10 RightJoin operator](#support-for-the-net-10-rightjoin-operator) +- [Small improvements](#small-improvements) Entity Framework Core 10 updates: @@ -13,6 +14,10 @@ Entity Framework Core 10 updates: In Preview 1 we added [support for LeftJoin operator](../preview1/efcore.md#support-for-the-net-10-leftjoin-operator). In Preview 2 we are adding support for the analogous `RightJoin` operator, which keeps all the data from the second collection and only the matching data from the first collection. EF 10 translates this to `RIGHT JOIN` operation in the database. +## Small improvements + +- Associate the DatabaseRoot with the scoped options instance and not the singleton options ([#34477](https://github.com/dotnet/efcore/pull/34477), contributed by [@koenigst](https://github.com/koenigst)). + ## Everything else in Preview 2 Preview 2 contains: