Microsoft.EntityFrameworkCore 9.0.0

Prefix Reserved

Requires NuGet 3.6 or higher.

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

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

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.3K)

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

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 2,321,785 11/12/2024
9.0.0-rc.2.24474.1 140,456 10/8/2024
9.0.0-rc.1.24451.1 102,042 9/10/2024
9.0.0-preview.7.24405.3 52,197 8/13/2024
9.0.0-preview.6.24327.4 74,818 7/9/2024
9.0.0-preview.5.24306.3 34,573 6/11/2024
9.0.0-preview.4.24267.1 49,376 5/21/2024
9.0.0-preview.3.24172.4 158,393 4/11/2024
9.0.0-preview.2.24128.4 56,032 3/12/2024
9.0.0-preview.1.24081.2 81,400 2/13/2024
8.0.11 2,687,944 11/12/2024
8.0.10 8,736,146 10/8/2024
8.0.8 14,443,861 8/13/2024
8.0.7 10,090,787 7/9/2024
8.0.6 12,326,013 5/28/2024
8.0.5 5,438,867 5/14/2024
8.0.4 19,296,288 4/9/2024
8.0.3 8,760,944 3/12/2024
8.0.2 15,732,229 2/13/2024
8.0.1 11,170,367 1/9/2024
8.0.0 29,139,255 11/14/2023
8.0.0-rc.2.23480.1 469,225 10/10/2023
8.0.0-rc.1.23419.6 136,165 9/12/2023
8.0.0-preview.7.23375.4 101,978 8/8/2023
8.0.0-preview.6.23329.4 166,852 7/11/2023
8.0.0-preview.5.23280.1 130,607 6/13/2023
8.0.0-preview.4.23259.3 125,204 5/16/2023
8.0.0-preview.3.23174.2 194,450 4/11/2023
8.0.0-preview.2.23128.3 189,895 3/14/2023
8.0.0-preview.1.23111.4 135,617 2/21/2023
7.0.20 1,997,239 5/28/2024
7.0.19 412,515 5/14/2024
7.0.18 1,708,288 4/9/2024
7.0.17 1,393,449 3/12/2024
7.0.16 1,799,211 2/13/2024
7.0.15 2,824,309 1/9/2024
7.0.14 5,394,189 11/14/2023
7.0.13 5,837,075 10/24/2023
7.0.12 4,042,131 10/10/2023
7.0.11 12,141,840 9/12/2023
7.0.10 8,931,191 8/8/2023
7.0.9 8,151,125 7/11/2023
7.0.8 5,116,259 6/22/2023
7.0.7 3,552,422 6/13/2023
7.0.5 23,795,746 4/11/2023
7.0.4 8,941,113 3/14/2023
7.0.3 12,908,522 2/14/2023
7.0.2 17,354,259 1/10/2023
7.0.1 9,420,742 12/13/2022
7.0.0 26,004,512 11/7/2022
7.0.0-rc.2.22472.11 211,935 10/11/2022
7.0.0-rc.1.22426.7 210,930 9/14/2022
7.0.0-preview.7.22376.2 93,811 8/9/2022
7.0.0-preview.6.22329.4 73,223 7/12/2022
7.0.0-preview.5.22302.2 62,819 6/14/2022
7.0.0-preview.4.22229.2 77,969 5/10/2022
7.0.0-preview.3.22175.1 77,131 4/13/2022
7.0.0-preview.2.22153.1 84,785 3/14/2022
7.0.0-preview.1.22076.6 56,583 2/17/2022
6.0.36 179,332 11/12/2024
6.0.35 334,585 10/8/2024
6.0.33 939,482 8/13/2024
6.0.32 556,341 7/9/2024
6.0.31 822,718 5/28/2024
6.0.30 414,105 5/14/2024
6.0.29 2,062,437 4/9/2024
6.0.28 1,236,432 3/12/2024
6.0.27 1,561,882 2/13/2024
6.0.26 2,303,482 1/9/2024
6.0.25 3,157,975 11/14/2023
6.0.24 1,641,553 10/24/2023
6.0.23 1,134,716 10/10/2023
6.0.22 3,048,955 9/12/2023
6.0.21 3,239,257 8/8/2023
6.0.20 2,619,042 7/11/2023
6.0.19 2,168,193 6/22/2023
6.0.18 1,182,338 6/13/2023
6.0.16 6,932,497 4/11/2023
6.0.15 3,894,790 3/14/2023
6.0.14 4,891,480 2/14/2023
6.0.13 6,534,021 1/10/2023
6.0.12 10,055,029 12/13/2022
6.0.11 9,332,075 11/7/2022
6.0.10 16,553,801 10/11/2022
6.0.9 14,540,290 9/13/2022
6.0.8 17,357,096 8/9/2022
6.0.7 46,790,601 7/12/2022
6.0.6 13,987,817 6/14/2022
6.0.5 21,352,226 5/10/2022
6.0.4 17,155,896 4/11/2022
6.0.3 22,904,864 3/8/2022
6.0.2 18,947,638 2/8/2022
6.0.1 31,123,365 12/14/2021
6.0.0 61,818,281 11/8/2021
6.0.0-rc.2.21480.5 316,534 10/12/2021
6.0.0-rc.1.21452.10 240,216 9/14/2021
6.0.0-preview.7.21378.4 94,655 8/10/2021
6.0.0-preview.6.21352.1 43,140 7/14/2021
6.0.0-preview.5.21301.9 183,269 6/15/2021
6.0.0-preview.4.21253.1 71,438 5/24/2021
6.0.0-preview.3.21201.2 94,162 4/8/2021
6.0.0-preview.2.21154.2 72,818 3/11/2021
6.0.0-preview.1.21102.2 93,782 2/12/2021
5.0.17 7,121,624 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,449,252 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,235,639 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,308,068 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,307,946 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,710,949 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,209,589 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,020,534 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,060,292 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,305,598 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,078,137 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,035,284 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,160,407 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,133,669 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,963,805 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,360,751 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,544,706 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 25,695,745 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 375,744 10/13/2020
5.0.0-rc.1.20451.13 317,426 9/14/2020
5.0.0-preview.8.20407.4 200,464 8/25/2020
5.0.0-preview.7.20365.15 113,294 7/21/2020
5.0.0-preview.6.20312.4 63,317 6/25/2020
5.0.0-preview.5.20278.2 48,203 6/10/2020
5.0.0-preview.4.20220.10 73,190 5/18/2020
5.0.0-preview.3.20181.2 93,699 4/23/2020
5.0.0-preview.2.20159.4 61,012 4/2/2020
5.0.0-preview.2.20120.8 45,764 3/16/2020
3.1.32 4,524,969 12/13/2022
3.1.31 922,172 11/8/2022
3.1.30 679,062 10/11/2022
3.1.29 1,121,539 9/13/2022
3.1.28 794,382 8/9/2022
3.1.27 710,447 7/12/2022
3.1.26 609,665 6/14/2022
3.1.25 1,045,373 5/10/2022
3.1.24 637,469 4/11/2022
3.1.23 1,029,636 3/8/2022
3.1.22 3,229,354 12/14/2021
3.1.21 2,541,677 11/7/2021
3.1.20 1,479,331 10/11/2021
3.1.19 2,415,363 9/14/2021
3.1.18 5,124,411 8/10/2021
3.1.17 1,840,212 7/13/2021
3.1.16 2,335,911 6/8/2021
3.1.15 2,735,289 5/11/2021
3.1.14 3,061,326 4/6/2021
3.1.13 4,492,301 3/9/2021
3.1.12 2,955,373 2/9/2021
3.1.11 5,349,721 1/12/2021
3.1.10 8,258,278 11/9/2020
3.1.9 11,863,897 10/13/2020
3.1.8 17,542,816 9/8/2020
3.1.7 9,871,776 8/11/2020
3.1.6 10,643,959 7/14/2020
3.1.5 12,615,793 6/9/2020
3.1.4 17,669,659 5/12/2020
3.1.3 27,479,182 3/24/2020
3.1.2 11,763,811 2/19/2020
3.1.1 19,699,283 1/14/2020
3.1.0 33,465,514 12/3/2019
3.1.0-preview3.19554.8 163,980 11/13/2019
3.1.0-preview2.19525.5 32,370 11/1/2019
3.1.0-preview1.19506.2 744,714 10/15/2019
3.0.3 184,340 2/19/2020
3.0.2 79,391 1/14/2020
3.0.1 1,387,560 11/18/2019
3.0.0 18,671,534 9/23/2019
3.0.0-rc1.19456.14 46,392 9/16/2019
3.0.0-preview9.19423.6 1,363,976 9/4/2019
3.0.0-preview8.19405.11 412,071 8/13/2019
3.0.0-preview7.19362.6 89,960 7/23/2019
3.0.0-preview6.19304.10 166,548 6/12/2019
3.0.0-preview5.19227.1 670,446 5/6/2019
3.0.0-preview4.19216.3 22,742 4/18/2019
3.0.0-preview3.19153.1 201,503 3/6/2019
3.0.0-preview.19074.3 30,871 1/29/2019
3.0.0-preview.18572.1 48,011 12/3/2018
2.2.6 31,190,731 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,323,023 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,292,371 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,367,699 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,822,435 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 21,100,570 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 184,155 10/17/2018
2.2.0-preview2-35157 145,581 9/12/2018
2.2.0-preview1-35029 80,989 8/22/2018
2.1.14 3,861,503 11/18/2019
2.1.11 3,674,383 5/14/2019
2.1.8 3,672,726 2/12/2019
2.1.4 15,395,293 10/1/2018
2.1.3 4,861,784 9/11/2018
2.1.2 8,045,064 8/21/2018
2.1.1 15,644,513 6/18/2018
2.1.0 13,071,512 5/29/2018
2.1.0-rc1-final 222,720 5/6/2018
2.1.0-preview2-final 203,675 4/10/2018
2.1.0-preview1-final 315,387 2/26/2018
2.0.3 5,253,876 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,567,210 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,313,169 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,620,539 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,392 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,098,494 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,625,241 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,236,458 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 219,377 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 306,284 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,876,715 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,086,156 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,737,691 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,205 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 53,500 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 42,272 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 56,996 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 619,044 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 77,899 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 731,314 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,560,471 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 136,168 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.