Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions release-notes/11.0/preview/rc1/efcore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Entity Framework Core in .NET 11 RC 1 - Release Notes

.NET 11 RC 1 focuses on fixes and stabilization for EF Core 11. For the full
set of EF Core 11 features, see
[What's new in EF Core 11](https://learn.microsoft.com/ef/core/what-is-new/ef-core-11.0/whatsnew).

## Bug fixes

- **Query translation**
- Fixed `OPENJSON ... AS JSON` queries for native `json` columns on Azure SQL
at compatibility level 170
([dotnet/efcore #38665](https://github.com/dotnet/efcore/pull/38665)).
- Fixed query shaping for primitive collections that use native provider
representations instead of JSON strings
([dotnet/efcore #38810](https://github.com/dotnet/efcore/pull/38810)).
- Preserved the discriminating `ORDER BY` expression required to materialize
many-to-many collections reliably
([dotnet/efcore #38811](https://github.com/dotnet/efcore/pull/38811)).
- **Model building and migrations**
- Fixed model finalization and migration scaffolding when a foreign key
references a key declared on a complex type property
([dotnet/efcore #38764](https://github.com/dotnet/efcore/pull/38764)).
- Fixed the default `IsTableExcludedFromMigrations` value for entity
splitting
([dotnet/efcore #38802](https://github.com/dotnet/efcore/pull/38802)).
- **SQLite**
- Handled unavailable WinRT APIs when initializing `Microsoft.Data.Sqlite`,
including partially implemented APIs under Wine
([dotnet/efcore #38612](https://github.com/dotnet/efcore/pull/38612)).

<!-- Filtered features:
- No new broadly useful EF Core feature was identified in the authoritative
RC 1 change set. This note intentionally summarizes customer-facing fixes
rather than promoting dependency, infrastructure, analyzer-performance, or
documentation-only changes as features.
-->

## Community contributors

Thank you contributors! ❤️

- [@BrycensRanch](https://github.com/dotnet/efcore/pulls?q=is%3Apr+is%3Amerged+author%3ABrycensRanch)
Loading