Microsoft.EntityFrameworkCore 9.0.2

Prefix Reserved

Requires NuGet 3.6 or higher.

dotnet add package Microsoft.EntityFrameworkCore --version 9.0.2                
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.2                
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.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.EntityFrameworkCore --version 9.0.2                
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.2"                
#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.2

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

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.5K)

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

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.2 12,985 2/11/2025
9.0.1 1,241,558 1/14/2025
9.0.0 5,519,667 11/12/2024
9.0.0-rc.2.24474.1 163,899 10/8/2024
9.0.0-rc.1.24451.1 110,544 9/10/2024
9.0.0-preview.7.24405.3 66,363 8/13/2024
9.0.0-preview.6.24327.4 80,473 7/9/2024
9.0.0-preview.5.24306.3 37,106 6/11/2024
9.0.0-preview.4.24267.1 53,017 5/21/2024
9.0.0-preview.3.24172.4 163,504 4/11/2024
9.0.0-preview.2.24128.4 60,029 3/12/2024
9.0.0-preview.1.24081.2 88,718 2/13/2024
8.0.13 8,173 2/11/2025
8.0.12 762,380 1/14/2025
8.0.11 5,913,404 11/12/2024
8.0.10 11,637,730 10/8/2024
8.0.8 17,089,613 8/13/2024
8.0.7 11,425,627 7/9/2024
8.0.6 13,656,656 5/28/2024
8.0.5 6,004,324 5/14/2024
8.0.4 21,474,859 4/9/2024
8.0.3 9,459,724 3/12/2024
8.0.2 17,613,127 2/13/2024
8.0.1 12,031,572 1/9/2024
8.0.0 32,750,369 11/14/2023
8.0.0-rc.2.23480.1 484,747 10/10/2023
8.0.0-rc.1.23419.6 139,115 9/12/2023
8.0.0-preview.7.23375.4 105,640 8/8/2023
8.0.0-preview.6.23329.4 176,671 7/11/2023
8.0.0-preview.5.23280.1 134,390 6/13/2023
8.0.0-preview.4.23259.3 128,325 5/16/2023
8.0.0-preview.3.23174.2 202,677 4/11/2023
8.0.0-preview.2.23128.3 191,583 3/14/2023
8.0.0-preview.1.23111.4 136,732 2/21/2023
7.0.20 2,335,586 5/28/2024
7.0.19 441,568 5/14/2024
7.0.18 1,861,722 4/9/2024
7.0.17 1,460,074 3/12/2024
7.0.16 1,872,479 2/13/2024
7.0.15 2,935,715 1/9/2024
7.0.14 5,586,282 11/14/2023
7.0.13 6,081,655 10/24/2023
7.0.12 4,150,233 10/10/2023
7.0.11 12,475,894 9/12/2023
7.0.10 9,139,534 8/8/2023
7.0.9 8,404,546 7/11/2023
7.0.8 5,210,176 6/22/2023
7.0.7 3,618,149 6/13/2023
7.0.5 24,298,657 4/11/2023
7.0.4 9,075,918 3/14/2023
7.0.3 13,154,513 2/14/2023
7.0.2 17,781,213 1/10/2023
7.0.1 9,586,029 12/13/2022
7.0.0 27,070,745 11/7/2022
7.0.0-rc.2.22472.11 214,091 10/11/2022
7.0.0-rc.1.22426.7 212,175 9/14/2022
7.0.0-preview.7.22376.2 94,803 8/9/2022
7.0.0-preview.6.22329.4 74,598 7/12/2022
7.0.0-preview.5.22302.2 63,755 6/14/2022
7.0.0-preview.4.22229.2 80,209 5/10/2022
7.0.0-preview.3.22175.1 77,597 4/13/2022
7.0.0-preview.2.22153.1 85,460 3/14/2022
7.0.0-preview.1.22076.6 57,181 2/17/2022
6.0.36 400,757 11/12/2024
6.0.35 430,145 10/8/2024
6.0.33 1,183,311 8/13/2024
6.0.32 618,339 7/9/2024
6.0.31 891,603 5/28/2024
6.0.30 447,574 5/14/2024
6.0.29 2,240,998 4/9/2024
6.0.28 1,325,602 3/12/2024
6.0.27 1,645,240 2/13/2024
6.0.26 2,402,395 1/9/2024
6.0.25 3,290,096 11/14/2023
6.0.24 1,706,165 10/24/2023
6.0.23 1,164,603 10/10/2023
6.0.22 3,147,469 9/12/2023
6.0.21 3,337,351 8/8/2023
6.0.20 2,689,056 7/11/2023
6.0.19 2,244,250 6/22/2023
6.0.18 1,210,831 6/13/2023
6.0.16 7,093,153 4/11/2023
6.0.15 3,971,159 3/14/2023
6.0.14 5,010,185 2/14/2023
6.0.13 6,636,398 1/10/2023
6.0.12 10,283,482 12/13/2022
6.0.11 9,494,145 11/7/2022
6.0.10 16,830,822 10/11/2022
6.0.9 14,753,880 9/13/2022
6.0.8 17,654,170 8/9/2022
6.0.7 47,614,406 7/12/2022
6.0.6 14,199,708 6/14/2022
6.0.5 21,682,776 5/10/2022
6.0.4 17,376,619 4/11/2022
6.0.3 23,495,782 3/8/2022
6.0.2 19,172,350 2/8/2022
6.0.1 31,563,755 12/14/2021
6.0.0 63,745,317 11/8/2021
6.0.0-rc.2.21480.5 319,577 10/12/2021
6.0.0-rc.1.21452.10 246,170 9/14/2021
6.0.0-preview.7.21378.4 95,361 8/10/2021
6.0.0-preview.6.21352.1 43,339 7/14/2021
6.0.0-preview.5.21301.9 184,530 6/15/2021
6.0.0-preview.4.21253.1 71,554 5/24/2021
6.0.0-preview.3.21201.2 94,670 4/8/2021
6.0.0-preview.2.21154.2 72,863 3/11/2021
6.0.0-preview.1.21102.2 94,581 2/12/2021
5.0.17 7,295,670 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,463,415 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,286,084 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,320,642 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,352,967 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,749,913 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,268,694 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,135,693 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,137,306 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,409,101 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,172,941 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,085,313 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,252,043 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,187,866 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,999,630 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,428,921 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,658,363 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 26,023,748 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 377,398 10/13/2020
5.0.0-rc.1.20451.13 317,986 9/14/2020
5.0.0-preview.8.20407.4 201,391 8/25/2020
5.0.0-preview.7.20365.15 113,733 7/21/2020
5.0.0-preview.6.20312.4 63,568 6/25/2020
5.0.0-preview.5.20278.2 48,447 6/10/2020
5.0.0-preview.4.20220.10 73,349 5/18/2020
5.0.0-preview.3.20181.2 93,968 4/23/2020
5.0.0-preview.2.20159.4 61,222 4/2/2020
5.0.0-preview.2.20120.8 45,865 3/16/2020
3.1.32 4,859,996 12/13/2022
3.1.31 984,899 11/8/2022
3.1.30 699,245 10/11/2022
3.1.29 1,179,906 9/13/2022
3.1.28 810,369 8/9/2022
3.1.27 720,013 7/12/2022
3.1.26 625,758 6/14/2022
3.1.25 1,061,349 5/10/2022
3.1.24 644,572 4/11/2022
3.1.23 1,042,625 3/8/2022
3.1.22 3,308,694 12/14/2021
3.1.21 2,572,538 11/7/2021
3.1.20 1,510,449 10/11/2021
3.1.19 2,437,211 9/14/2021
3.1.18 5,180,724 8/10/2021
3.1.17 1,856,599 7/13/2021
3.1.16 2,352,426 6/8/2021
3.1.15 2,779,429 5/11/2021
3.1.14 3,079,534 4/6/2021
3.1.13 4,532,124 3/9/2021
3.1.12 2,979,129 2/9/2021
3.1.11 5,389,026 1/12/2021
3.1.10 8,295,445 11/9/2020
3.1.9 11,925,876 10/13/2020
3.1.8 17,612,850 9/8/2020
3.1.7 9,938,019 8/11/2020
3.1.6 10,696,292 7/14/2020
3.1.5 12,710,585 6/9/2020
3.1.4 17,782,857 5/12/2020
3.1.3 27,661,659 3/24/2020
3.1.2 11,823,363 2/19/2020
3.1.1 19,815,053 1/14/2020
3.1.0 33,770,060 12/3/2019
3.1.0-preview3.19554.8 164,150 11/13/2019
3.1.0-preview2.19525.5 32,523 11/1/2019
3.1.0-preview1.19506.2 750,605 10/15/2019
3.0.3 186,117 2/19/2020
3.0.2 79,675 1/14/2020
3.0.1 1,393,685 11/18/2019
3.0.0 18,799,759 9/23/2019
3.0.0-rc1.19456.14 46,476 9/16/2019
3.0.0-preview9.19423.6 1,370,205 9/4/2019
3.0.0-preview8.19405.11 412,332 8/13/2019
3.0.0-preview7.19362.6 90,102 7/23/2019
3.0.0-preview6.19304.10 167,063 6/12/2019
3.0.0-preview5.19227.1 670,817 5/6/2019
3.0.0-preview4.19216.3 22,794 4/18/2019
3.0.0-preview3.19153.1 201,870 3/6/2019
3.0.0-preview.19074.3 31,034 1/29/2019
3.0.0-preview.18572.1 48,238 12/3/2018
2.3.0 2,296 1/14/2025
2.2.6 31,383,433 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,399,877 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,307,281 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,390,318 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,845,622 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 21,299,401 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 184,402 10/17/2018
2.2.0-preview2-35157 146,826 9/12/2018
2.2.0-preview1-35029 81,077 8/22/2018
2.1.14 3,899,429 11/18/2019
2.1.11 3,682,762 5/14/2019
2.1.8 3,708,328 2/12/2019
2.1.4 15,443,047 10/1/2018
2.1.3 4,871,391 9/11/2018
2.1.2 8,067,054 8/21/2018
2.1.1 15,920,629 6/18/2018
2.1.0 13,136,305 5/29/2018
2.1.0-rc1-final 223,169 5/6/2018
2.1.0-preview2-final 204,196 4/10/2018
2.1.0-preview1-final 315,847 2/26/2018
2.0.3 5,281,510 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,605,657 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,380,877 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,849,116 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,588 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,105,257 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,693,761 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,240,701 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 220,586 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 307,025 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,918,290 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,113,360 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,917,039 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,328 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 54,017 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 42,527 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 57,291 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 630,149 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 78,015 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 758,750 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,618,791 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 137,587 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.