Microsoft.EntityFrameworkCore 9.0.0-rc.1.24451.1

Prefix Reserved
This is a prerelease version of Microsoft.EntityFrameworkCore.
There is a newer prerelease version of this package available.
See the version list below for details.

Requires NuGet 3.6 or higher.

dotnet add package Microsoft.EntityFrameworkCore --version 9.0.0-rc.1.24451.1                
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.0-rc.1.24451.1                
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-rc.1.24451.1" />                
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-rc.1.24451.1                
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.0-rc.1.24451.1"                
#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-rc.1.24451.1&prerelease

// Install Microsoft.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.0-rc.1.24451.1&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 (8.1K)

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 (573)

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-rc.2.24474.1 7,107 10/8/2024
9.0.0-rc.1.24451.1 52,480 9/10/2024
9.0.0-preview.7.24405.3 32,614 8/13/2024
9.0.0-preview.6.24327.4 50,744 7/9/2024
9.0.0-preview.5.24306.3 30,508 6/11/2024
9.0.0-preview.4.24267.1 38,604 5/21/2024
9.0.0-preview.3.24172.4 140,702 4/11/2024
9.0.0-preview.2.24128.4 49,768 3/12/2024
9.0.0-preview.1.24081.2 68,115 2/13/2024
8.0.10 318,321 10/8/2024
8.0.8 7,477,182 8/13/2024
8.0.7 6,828,293 7/9/2024
8.0.6 9,210,267 5/28/2024
8.0.5 4,159,015 5/14/2024
8.0.4 14,267,142 4/9/2024
8.0.3 7,191,462 3/12/2024
8.0.2 12,388,925 2/13/2024
8.0.1 9,348,374 1/9/2024
8.0.0 22,103,029 11/14/2023
8.0.0-rc.2.23480.1 433,283 10/10/2023
8.0.0-rc.1.23419.6 130,707 9/12/2023
8.0.0-preview.7.23375.4 90,666 8/8/2023
8.0.0-preview.6.23329.4 147,802 7/11/2023
8.0.0-preview.5.23280.1 121,986 6/13/2023
8.0.0-preview.4.23259.3 119,122 5/16/2023
8.0.0-preview.3.23174.2 178,518 4/11/2023
8.0.0-preview.2.23128.3 186,019 3/14/2023
8.0.0-preview.1.23111.4 132,994 2/21/2023
7.0.20 1,234,342 5/28/2024
7.0.19 337,962 5/14/2024
7.0.18 1,341,718 4/9/2024
7.0.17 1,230,363 3/12/2024
7.0.16 1,636,859 2/13/2024
7.0.15 2,551,806 1/9/2024
7.0.14 4,983,894 11/14/2023
7.0.13 5,377,548 10/24/2023
7.0.12 3,824,601 10/10/2023
7.0.11 11,271,562 9/12/2023
7.0.10 8,456,478 8/8/2023
7.0.9 7,595,555 7/11/2023
7.0.8 4,874,456 6/22/2023
7.0.7 3,403,968 6/13/2023
7.0.5 22,600,740 4/11/2023
7.0.4 8,642,005 3/14/2023
7.0.3 12,342,520 2/14/2023
7.0.2 16,460,612 1/10/2023
7.0.1 9,059,791 12/13/2022
7.0.0 23,826,087 11/7/2022
7.0.0-rc.2.22472.11 207,495 10/11/2022
7.0.0-rc.1.22426.7 209,088 9/14/2022
7.0.0-preview.7.22376.2 91,273 8/9/2022
7.0.0-preview.6.22329.4 70,617 7/12/2022
7.0.0-preview.5.22302.2 61,464 6/14/2022
7.0.0-preview.4.22229.2 75,280 5/10/2022
7.0.0-preview.3.22175.1 75,551 4/13/2022
7.0.0-preview.2.22153.1 84,013 3/14/2022
7.0.0-preview.1.22076.6 54,546 2/17/2022
6.0.35 18,575 10/8/2024
6.0.33 471,654 8/13/2024
6.0.32 397,087 7/9/2024
6.0.31 638,609 5/28/2024
6.0.30 325,626 5/14/2024
6.0.29 1,626,619 4/9/2024
6.0.28 1,020,538 3/12/2024
6.0.27 1,356,808 2/13/2024
6.0.26 2,075,523 1/9/2024
6.0.25 2,843,225 11/14/2023
6.0.24 1,486,498 10/24/2023
6.0.23 1,059,781 10/10/2023
6.0.22 2,817,646 9/12/2023
6.0.21 2,998,548 8/8/2023
6.0.20 2,452,473 7/11/2023
6.0.19 1,973,899 6/22/2023
6.0.18 1,108,901 6/13/2023
6.0.16 6,543,513 4/11/2023
6.0.15 3,679,034 3/14/2023
6.0.14 4,636,991 2/14/2023
6.0.13 6,258,464 1/10/2023
6.0.12 9,507,821 12/13/2022
6.0.11 8,967,853 11/7/2022
6.0.10 15,939,813 10/11/2022
6.0.9 14,057,526 9/13/2022
6.0.8 16,687,648 8/9/2022
6.0.7 44,832,172 7/12/2022
6.0.6 13,483,934 6/14/2022
6.0.5 20,595,565 5/10/2022
6.0.4 16,651,290 4/11/2022
6.0.3 21,972,474 3/8/2022
6.0.2 18,478,982 2/8/2022
6.0.1 30,106,306 12/14/2021
6.0.0 57,985,913 11/8/2021
6.0.0-rc.2.21480.5 311,958 10/12/2021
6.0.0-rc.1.21452.10 227,030 9/14/2021
6.0.0-preview.7.21378.4 91,765 8/10/2021
6.0.0-preview.6.21352.1 42,818 7/14/2021
6.0.0-preview.5.21301.9 181,132 6/15/2021
6.0.0-preview.4.21253.1 71,196 5/24/2021
6.0.0-preview.3.21201.2 93,187 4/8/2021
6.0.0-preview.2.21154.2 72,746 3/11/2021
6.0.0-preview.1.21102.2 92,862 2/12/2021
5.0.17 6,777,981 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,416,125 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,170,292 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,272,181 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,212,020 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,628,987 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,066,304 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 12,773,523 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 9,898,652 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,094,608 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 13,856,930 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 7,924,548 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 10,976,403 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,029,386 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,877,885 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,237,604 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,289,479 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 25,021,846 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 373,114 10/13/2020
5.0.0-rc.1.20451.13 316,429 9/14/2020
5.0.0-preview.8.20407.4 199,145 8/25/2020
5.0.0-preview.7.20365.15 112,619 7/21/2020
5.0.0-preview.6.20312.4 62,943 6/25/2020
5.0.0-preview.5.20278.2 47,707 6/10/2020
5.0.0-preview.4.20220.10 72,581 5/18/2020
5.0.0-preview.3.20181.2 92,799 4/23/2020
5.0.0-preview.2.20159.4 60,570 4/2/2020
5.0.0-preview.2.20120.8 45,562 3/16/2020
3.1.32 3,873,693 12/13/2022
3.1.31 800,753 11/8/2022
3.1.30 639,853 10/11/2022
3.1.29 1,022,914 9/13/2022
3.1.28 755,907 8/9/2022
3.1.27 686,898 7/12/2022
3.1.26 582,200 6/14/2022
3.1.25 1,009,346 5/10/2022
3.1.24 620,148 4/11/2022
3.1.23 1,000,643 3/8/2022
3.1.22 3,094,075 12/14/2021
3.1.21 2,466,447 11/7/2021
3.1.20 1,418,566 10/11/2021
3.1.19 2,368,420 9/14/2021
3.1.18 5,014,400 8/10/2021
3.1.17 1,804,138 7/13/2021
3.1.16 2,287,665 6/8/2021
3.1.15 2,651,234 5/11/2021
3.1.14 3,014,399 4/6/2021
3.1.13 4,406,524 3/9/2021
3.1.12 2,916,603 2/9/2021
3.1.11 5,268,567 1/12/2021
3.1.10 8,179,690 11/9/2020
3.1.9 11,729,453 10/13/2020
3.1.8 17,387,155 9/8/2020
3.1.7 9,707,764 8/11/2020
3.1.6 10,524,385 7/14/2020
3.1.5 12,441,384 6/9/2020
3.1.4 17,463,227 5/12/2020
3.1.3 27,084,691 3/24/2020
3.1.2 11,640,215 2/19/2020
3.1.1 19,450,753 1/14/2020
3.1.0 32,809,672 12/3/2019
3.1.0-preview3.19554.8 163,638 11/13/2019
3.1.0-preview2.19525.5 32,176 11/1/2019
3.1.0-preview1.19506.2 732,387 10/15/2019
3.0.3 180,277 2/19/2020
3.0.2 78,872 1/14/2020
3.0.1 1,373,581 11/18/2019
3.0.0 18,408,772 9/23/2019
3.0.0-rc1.19456.14 46,196 9/16/2019
3.0.0-preview9.19423.6 1,349,016 9/4/2019
3.0.0-preview8.19405.11 411,685 8/13/2019
3.0.0-preview7.19362.6 89,620 7/23/2019
3.0.0-preview6.19304.10 165,937 6/12/2019
3.0.0-preview5.19227.1 669,990 5/6/2019
3.0.0-preview4.19216.3 22,642 4/18/2019
3.0.0-preview3.19153.1 200,986 3/6/2019
3.0.0-preview.19074.3 30,674 1/29/2019
3.0.0-preview.18572.1 47,371 12/3/2018
2.2.6 30,801,812 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,164,758 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,262,383 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,318,048 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,775,351 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 20,690,580 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 183,780 10/17/2018
2.2.0-preview2-35157 144,258 9/12/2018
2.2.0-preview1-35029 80,760 8/22/2018
2.1.14 3,783,577 11/18/2019
2.1.11 3,656,930 5/14/2019
2.1.8 3,599,854 2/12/2019
2.1.4 15,277,663 10/1/2018
2.1.3 4,841,986 9/11/2018
2.1.2 8,002,429 8/21/2018
2.1.1 15,112,244 6/18/2018
2.1.0 12,924,075 5/29/2018
2.1.0-rc1-final 220,508 5/6/2018
2.1.0-preview2-final 201,401 4/10/2018
2.1.0-preview1-final 313,688 2/26/2018
2.0.3 5,197,594 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,505,733 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,189,546 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,116,148 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,000 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,084,159 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,445,088 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,227,526 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 216,549 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 304,520 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,804,542 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,015,042 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,447,696 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,132 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 52,631 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 41,845 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 56,596 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 599,485 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 77,736 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 698,392 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,456,441 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 133,345 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.