Microsoft.EntityFrameworkCore 9.0.0-preview.6.24327.4

Prefix Reserved
This is a prerelease version of Microsoft.EntityFrameworkCore.

Requires NuGet 3.6 or higher.

dotnet add package Microsoft.EntityFrameworkCore --version 9.0.0-preview.6.24327.4                
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.0-preview.6.24327.4                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0-preview.6.24327.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.EntityFrameworkCore --version 9.0.0-preview.6.24327.4                
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.0-preview.6.24327.4"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.EntityFrameworkCore as a Cake Addin
#addin nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.0-preview.6.24327.4&prerelease

// Install Microsoft.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.0-preview.6.24327.4&prerelease                

Entity Framework Core (EF Core) is a modern object-database mapper that lets you build a clean, portable, and high-level data access layer with .NET (C#) across a variety of databases, including SQL Server (on-premises and Azure), SQLite, MySQL, PostgreSQL, Oracle, and Azure Cosmos DB. It supports LINQ queries, change tracking, updates, and schema migrations.

Getting started

Prerequisites

Make sure to install the same version of all EF Core packages shipped by Microsoft. For example, if version 5.0.3 of Microsoft.EntityFrameworkCore.SqlServer is installed, then all other Microsoft.EntityFrameworkCore.* packages must also be at 5.0.3.

Usage

To use Microsoft.EntityFrameworkCore in your application, you will typically need to create a class that inherits from DbContext, which represents your database session. You can then define classes that represent your database entities, and use LINQ queries to interact with the database.

Here's an example of how you might define a database context and an entity:

using Microsoft.EntityFrameworkCore;

public class MyDbContext : DbContext
{
    public DbSet<Customer> Customers { get; set; }
}

public class Customer
{
    public int Id { get; set; }
    public string Name { get; set; }
}

You can then use the MyDbContext class to interact with the database:

using var context = new MyDbContext();

// Add a new customer
context.Customers.Add(new Customer { Name = "John Doe" });
context.SaveChanges();

// Retrieve all customers
var customers = context.Customers.ToList();

Microsoft.EntityFrameworkCore supports multiple database providers, including SQL Server, MySQL, PostgreSQL, SQLite, and others. You will need to install the provider package for your chosen database. For example, to use SQL Server, you would install the Microsoft.EntityFrameworkCore.SqlServer package.

You would then configure your database context to use the SQL Server provider:

using Microsoft.EntityFrameworkCore;

public class MyDbContext : DbContext
{
    protected override void OnConfiguring(DbContextOptionsBuilder options)
        => options.UseSqlServer(@"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=MyDatabase");

    public DbSet<Customer> Customers { get; set; }
}

public class Customer
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Additional documentation

Feedback

If you have a specific question about using these projects, we encourage you to ask it on Stack Overflow. If you encounter a bug or would like to request a feature, submit an Github issue. For more details, see getting support.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7.8K)

Showing the top 5 NuGet packages that depend on Microsoft.EntityFrameworkCore:

Package Downloads
Microsoft.EntityFrameworkCore.Relational

Shared Entity Framework Core components for relational database providers.

Microsoft.EntityFrameworkCore.InMemory

In-memory database provider for Entity Framework Core (to be used for testing purposes).

Npgsql.EntityFrameworkCore.PostgreSQL

PostgreSQL/Npgsql provider for Entity Framework Core.

Microsoft.EntityFrameworkCore.Proxies

Lazy loading proxies for Entity Framework Core.

Microsoft.AspNetCore.App

Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

GitHub repositories (559)

Showing the top 5 popular GitHub repositories that depend on Microsoft.EntityFrameworkCore:

Repository Stars
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
Version Downloads Last updated
9.0.0-preview.6.24327.4 4,787 7/9/2024
9.0.0-preview.5.24306.3 20,334 6/11/2024
9.0.0-preview.4.24267.1 24,769 5/21/2024
9.0.0-preview.3.24172.4 84,175 4/11/2024
9.0.0-preview.2.24128.4 39,740 3/12/2024
9.0.0-preview.1.24081.2 57,233 2/13/2024
8.0.7 337,295 7/9/2024
8.0.6 4,049,173 5/28/2024
8.0.5 2,260,754 5/14/2024
8.0.4 7,110,612 4/9/2024
8.0.3 5,100,559 3/12/2024
8.0.2 8,370,577 2/13/2024
8.0.1 7,100,128 1/9/2024
8.0.0 14,522,760 11/14/2023
8.0.0-rc.2.23480.1 386,852 10/10/2023
8.0.0-rc.1.23419.6 123,679 9/12/2023
8.0.0-preview.7.23375.4 77,698 8/8/2023
8.0.0-preview.6.23329.4 126,494 7/11/2023
8.0.0-preview.5.23280.1 113,422 6/13/2023
8.0.0-preview.4.23259.3 109,527 5/16/2023
8.0.0-preview.3.23174.2 156,864 4/11/2023
8.0.0-preview.2.23128.3 177,981 3/14/2023
8.0.0-preview.1.23111.4 128,570 2/21/2023
7.0.20 322,353 5/28/2024
7.0.19 205,752 5/14/2024
7.0.18 733,587 4/9/2024
7.0.17 929,949 3/12/2024
7.0.16 1,378,364 2/13/2024
7.0.15 2,138,156 1/9/2024
7.0.14 4,354,400 11/14/2023
7.0.13 4,708,141 10/24/2023
7.0.12 3,514,137 10/10/2023
7.0.11 9,978,525 9/12/2023
7.0.10 7,701,094 8/8/2023
7.0.9 6,799,306 7/11/2023
7.0.8 4,496,136 6/22/2023
7.0.7 3,155,935 6/13/2023
7.0.5 20,911,904 4/11/2023
7.0.4 8,162,924 3/14/2023
7.0.3 11,497,985 2/14/2023
7.0.2 15,185,320 1/10/2023
7.0.1 8,523,515 12/13/2022
7.0.0 21,024,152 11/7/2022
7.0.0-rc.2.22472.11 199,431 10/11/2022
7.0.0-rc.1.22426.7 204,128 9/14/2022
7.0.0-preview.7.22376.2 86,290 8/9/2022
7.0.0-preview.6.22329.4 67,216 7/12/2022
7.0.0-preview.5.22302.2 59,331 6/14/2022
7.0.0-preview.4.22229.2 72,789 5/10/2022
7.0.0-preview.3.22175.1 73,607 4/13/2022
7.0.0-preview.2.22153.1 82,980 3/14/2022
7.0.0-preview.1.22076.6 52,108 2/17/2022
6.0.32 31,629 7/9/2024
6.0.31 316,120 5/28/2024
6.0.30 183,211 5/14/2024
6.0.29 895,031 4/9/2024
6.0.28 703,482 3/12/2024
6.0.27 1,025,248 2/13/2024
6.0.26 1,698,713 1/9/2024
6.0.25 2,339,912 11/14/2023
6.0.24 1,286,425 10/24/2023
6.0.23 937,750 10/10/2023
6.0.22 2,441,719 9/12/2023
6.0.21 2,598,924 8/8/2023
6.0.20 2,186,422 7/11/2023
6.0.19 1,732,239 6/22/2023
6.0.18 1,014,882 6/13/2023
6.0.16 5,966,285 4/11/2023
6.0.15 3,428,073 3/14/2023
6.0.14 4,266,341 2/14/2023
6.0.13 5,811,527 1/10/2023
6.0.12 8,724,904 12/13/2022
6.0.11 8,438,835 11/7/2022
6.0.10 14,965,186 10/11/2022
6.0.9 13,332,623 9/13/2022
6.0.8 15,702,748 8/9/2022
6.0.7 41,812,322 7/12/2022
6.0.6 12,787,546 6/14/2022
6.0.5 19,525,436 5/10/2022
6.0.4 15,783,755 4/11/2022
6.0.3 20,669,566 3/8/2022
6.0.2 17,717,542 2/8/2022
6.0.1 28,693,619 12/14/2021
6.0.0 53,011,225 11/8/2021
6.0.0-rc.2.21480.5 305,749 10/12/2021
6.0.0-rc.1.21452.10 206,833 9/14/2021
6.0.0-preview.7.21378.4 89,255 8/10/2021
6.0.0-preview.6.21352.1 42,245 7/14/2021
6.0.0-preview.5.21301.9 176,849 6/15/2021
6.0.0-preview.4.21253.1 70,706 5/24/2021
6.0.0-preview.3.21201.2 91,488 4/8/2021
6.0.0-preview.2.21154.2 70,094 3/11/2021
6.0.0-preview.1.21102.2 91,578 2/12/2021
5.0.17 6,271,859 5/10/2022
5.0.16 1,364,293 4/11/2022
5.0.15 2,088,816 3/8/2022
5.0.14 2,225,003 2/8/2022
5.0.13 4,090,905 12/14/2021
5.0.12 4,501,916 11/7/2021
5.0.11 7,850,368 10/12/2021
5.0.10 12,415,433 9/14/2021
5.0.9 9,657,719 8/10/2021
5.0.8 8,808,027 7/13/2021
5.0.7 13,479,485 6/8/2021
5.0.6 7,759,495 5/11/2021
5.0.5 10,721,051 4/6/2021
5.0.4 7,846,105 3/9/2021
5.0.3 7,763,214 2/9/2021
5.0.2 10,087,704 1/12/2021
5.0.1 14,929,371 12/8/2020
5.0.0 24,097,138 11/9/2020
5.0.0-rc.2.20475.6 369,546 10/13/2020
5.0.0-rc.1.20451.13 314,946 9/14/2020
5.0.0-preview.8.20407.4 197,171 8/25/2020
5.0.0-preview.7.20365.15 111,692 7/21/2020
5.0.0-preview.6.20312.4 62,216 6/25/2020
5.0.0-preview.5.20278.2 47,022 6/10/2020
5.0.0-preview.4.20220.10 71,775 5/18/2020
5.0.0-preview.3.20181.2 91,833 4/23/2020
5.0.0-preview.2.20159.4 59,850 4/2/2020
5.0.0-preview.2.20120.8 45,189 3/16/2020
3.1.32 3,195,325 12/13/2022
3.1.31 673,171 11/8/2022
3.1.30 585,101 10/11/2022
3.1.29 894,122 9/13/2022
3.1.28 685,794 8/9/2022
3.1.27 646,249 7/12/2022
3.1.26 550,527 6/14/2022
3.1.25 964,885 5/10/2022
3.1.24 597,441 4/11/2022
3.1.23 962,606 3/8/2022
3.1.22 2,939,705 12/14/2021
3.1.21 2,357,244 11/7/2021
3.1.20 1,335,610 10/11/2021
3.1.19 2,304,462 9/14/2021
3.1.18 4,870,467 8/10/2021
3.1.17 1,753,599 7/13/2021
3.1.16 2,204,734 6/8/2021
3.1.15 2,558,356 5/11/2021
3.1.14 2,946,695 4/6/2021
3.1.13 4,278,785 3/9/2021
3.1.12 2,861,839 2/9/2021
3.1.11 5,149,454 1/12/2021
3.1.10 8,053,348 11/9/2020
3.1.9 11,526,727 10/13/2020
3.1.8 17,116,225 9/8/2020
3.1.7 9,460,469 8/11/2020
3.1.6 10,315,330 7/14/2020
3.1.5 12,210,918 6/9/2020
3.1.4 17,108,448 5/12/2020
3.1.3 26,489,571 3/24/2020
3.1.2 11,444,292 2/19/2020
3.1.1 19,059,477 1/14/2020
3.1.0 31,852,859 12/3/2019
3.1.0-preview3.19554.8 160,004 11/13/2019
3.1.0-preview2.19525.5 31,879 11/1/2019
3.1.0-preview1.19506.2 716,279 10/15/2019
3.0.3 176,147 2/19/2020
3.0.2 78,152 1/14/2020
3.0.1 1,351,035 11/18/2019
3.0.0 18,020,964 9/23/2019
3.0.0-rc1.19456.14 45,811 9/16/2019
3.0.0-preview9.19423.6 1,328,051 9/4/2019
3.0.0-preview8.19405.11 396,587 8/13/2019
3.0.0-preview7.19362.6 87,747 7/23/2019
3.0.0-preview6.19304.10 160,839 6/12/2019
3.0.0-preview5.19227.1 647,504 5/6/2019
3.0.0-preview4.19216.3 22,418 4/18/2019
3.0.0-preview3.19153.1 196,593 3/6/2019
3.0.0-preview.19074.3 30,344 1/29/2019
3.0.0-preview.18572.1 46,887 12/3/2018
2.2.6 30,247,680 7/9/2019
2.2.4 18,896,892 4/9/2019
2.2.3 5,211,955 3/11/2019
2.2.2 6,236,976 2/12/2019
2.2.1 6,694,360 1/8/2019
2.2.0 20,077,181 12/3/2018
2.2.0-preview3-35497 182,891 10/17/2018
2.2.0-preview2-35157 142,480 9/12/2018
2.2.0-preview1-35029 80,345 8/22/2018
2.1.14 3,695,684 11/18/2019
2.1.11 3,628,650 5/14/2019
2.1.8 3,529,566 2/12/2019
2.1.4 15,096,473 10/1/2018
2.1.3 4,803,863 9/11/2018
2.1.2 7,938,118 8/21/2018
2.1.1 14,492,991 6/18/2018
2.1.0 12,688,183 5/29/2018
2.1.0-rc1-final 215,975 5/6/2018
2.1.0-preview2-final 195,824 4/10/2018
2.1.0-preview1-final 309,509 2/26/2018
2.0.3 5,114,398 5/7/2018
2.0.2 6,412,288 3/13/2018
2.0.1 12,003,626 11/14/2017
2.0.0 25,257,096 8/11/2017
2.0.0-preview2-final 93,452 6/28/2017
2.0.0-preview1-final 1,071,175 5/10/2017
1.1.6 5,206,886 7/10/2018
1.1.5 1,209,901 12/12/2017
1.1.4 213,274 11/14/2017
1.1.3 301,447 9/20/2017
1.1.2 4,650,788 5/9/2017
1.1.1 2,908,088 3/6/2017
1.1.0 6,135,229 11/16/2016
1.1.0-preview1-final 45,596 10/24/2016
1.0.6 51,739 11/14/2017
1.0.5 41,173 9/20/2017
1.0.4 55,867 5/9/2017
1.0.3 580,297 3/6/2017
1.0.2 77,313 12/12/2016
1.0.1 659,787 9/13/2016
1.0.0 1,354,621 6/27/2016
1.0.0-rc2-final 131,059 5/16/2016