Skip to content

Commit decc753

Browse files
committed
whats new in EF 10
1 parent 508f5ee commit decc753

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Breaking changes in EF Core 10 (EF10) - EF Core
3+
description: List of breaking changes introduced in Entity Framework Core 10 (EF10)
4+
author: maumar
5+
ms.date: 01/05/2025
6+
uid: core/what-is-new/ef-core-10.0/breaking-changes
7+
---
8+
9+
# Breaking changes in EF Core 10 (EF10)
10+
11+
This page documents API and behavior changes that have the potential to break existing applications updating from EF Core 9 to EF Core 10. Make sure to review earlier breaking changes if updating from an earlier version of EF Core:
12+
13+
- [Breaking changes in EF Core 9](xref:core/what-is-new/ef-core-9.0/breaking-changes)
14+
- [Breaking changes in EF Core 8](xref:core/what-is-new/ef-core-8.0/breaking-changes)
15+
- [Breaking changes in EF Core 7](xref:core/what-is-new/ef-core-7.0/breaking-changes)
16+
- [Breaking changes in EF Core 6](xref:core/what-is-new/ef-core-6.0/breaking-changes)
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: What's New in EF Core 10
3+
description: Overview of new features in EF Core 10
4+
author: maumar
5+
ms.date: 01/05/2025
6+
uid: core/what-is-new/ef-core-10.0/whatsnew
7+
---
8+
9+
# What's New in EF Core 10
10+
11+
EF Core 10 (EF10) is the next release after EF Core 9 and is scheduled for release in November 2025.
12+
13+
EF10 is available as [daily builds](https://github.com/dotnet/efcore/blob/main/docs/DailyBuilds.md) which contain all the latest EF10 features and API tweaks. The samples here make use of these daily builds.
14+
15+
> [!TIP]
16+
> You can run and debug into the samples by [downloading the sample code from GitHub](https://github.com/dotnet/EntityFramework.Docs). Each section below links to the source code specific to that section.
17+
18+
EF10 requires the .NET 10 SDK to build and requires the .NET 10 runtime to run. EF10 will not run on earlier .NET versions, and will not run on .NET Framework.
19+
20+
> [!TIP]
21+
> The _What's New_ docs are updated for each preview. All the samples are set up to use the [EF10 daily builds](https://github.com/dotnet/efcore/blob/main/docs/DailyBuilds.md), which usually have several additional weeks of completed work compared to the latest preview. We strongly encourage use of the daily builds when testing new features so that you're not doing your testing against stale bits.
22+
23+
<a name="linq-and-sql-translation"></a>
24+
25+
## LINQ and SQL translation
26+
27+
<a name="other-query-improvements"></a>
28+
29+
### Other query improvements
30+
31+
* Translation for DateOnly.ToDateTime(timeOnly) ([#35194](https://github.com/dotnet/efcore/pull/35194), contributed by [@mseada94](https://github.com/mseada94)).
32+
* Optimization for multiple consecutive `LIMIT`s ([#35384](https://github.com/dotnet/efcore/pull/35384)), contributed by [@ranma42](https://github.com/ranma42)).
33+
* Optimization for use of `Count` operation on `ICollection<T>` ([#35381](https://github.com/dotnet/efcore/pull/35381)), contributed by [@ChrisJollyAU](https://github.com/ChrisJollyAU)).

0 commit comments

Comments
 (0)