Skip to content
Merged
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
7 changes: 4 additions & 3 deletions entity-framework/core/miscellaneous/platforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ Several older .NET implementations are no longer supported. See the sections bel

| EF Core | .NET & .NET Core | .NET Standard | .NET Framework |
|-------------------|------------------|---------------|----------------|
| **9.0** | 8.0 | | |
| **8.0** | 8.0 | | |
| **7.0** | 6.0 | | |
| **6.0** | 6.0 | | |
| ~~**7.0**~~ (EOL) | 6.0 | | |
| ~~**6.0**~~ (EOL) | 6.0 | | |
| ~~**5.0**~~ (EOL) | 5.0 | 2.1 | |
| ~~**3.1**~~ (EOL) | 3.1 | 2.0 | 4.7.2 |

## .NET

EF Core is a .NET library. EF Core version 8.0 targets .NET version 8.0, while both EF Core versions 6.0 and 7.0 target .NET version 6.0. In general, we target the latest [LTS release](/lifecycle/products/microsoft-net-and-net-core) of .NET. This enables you to upgrade to a newer, STS release of EF Core to take advantage of the latest features without having to upgrade your entire app. There may be exceptions to this, however, as runtime features sometimes get added that require us to depend on the latest version of .NET.
EF Core is a .NET library. EF Core version versions 8.0 and 9.0 both target .NET version 8.0. In general, we target the latest [LTS release](/lifecycle/products/microsoft-net-and-net-core) of .NET. This enables you to upgrade to a newer, STS release of EF Core to take advantage of the latest features without having to upgrade your entire app. There may be exceptions to this, however, as runtime features sometimes get added that require us to depend on the latest version of .NET.

.NET supports multiple platforms including Windows, Linux, macOS, iOS, Android, and Wasm. For more details on which version are supported, see the [.NET Supported OS Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md).

Expand Down