Microsoft.EntityFrameworkCore 9.0.4

Prefix Reserved
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.4
                    
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.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.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.4" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.EntityFrameworkCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.EntityFrameworkCore --version 9.0.4
                    
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.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.
#addin nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.4
                    
Install Microsoft.EntityFrameworkCore as a Cake Addin
#tool nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.4
                    
Install Microsoft.EntityFrameworkCore as a Cake Tool

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.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 (624)

Showing the top 20 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.
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 Preview 2, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
davidfowl/AspNetCoreDiagnosticScenarios
This repository has examples of broken patterns in ASP.NET Core applications
elsa-workflows/elsa-core
A .NET workflows library
louthy/language-ext
C# pure functional programming framework - come and get declarative!
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
EduardoPires/EquinoxProject
Web Application ASP.NET 8 using Clean Architecture, DDD, CQRS, Event Sourcing and a lot of good practices
graphql-dotnet/graphql-dotnet
GraphQL for .NET
ldqk/Masuit.Tools
全龄段友好的C#万能工具库,码数吐司库,包含一些常用的操作类,大都是静态类,加密解密,反射操作,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展、Excel导出等常用封装。诸多功能集一身,代码量不到2MB!
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
danielgerlag/workflow-core
Lightweight workflow engine for .NET Standard
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
jasontaylordev/NorthwindTraders
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
MapsterMapper/Mapster
A fast, fun and stimulating object to object Mapper
Version Downloads Last updated
10.0.0-preview.3.25171.6 1,156 4/10/2025
10.0.0-preview.2.25163.8 10,263 3/18/2025
10.0.0-preview.1.25081.1 11,474 2/25/2025
9.0.4 203,100 4/8/2025
9.0.3 3,318,675 3/11/2025
9.0.2 3,704,613 2/11/2025
9.0.1 5,525,838 1/14/2025
9.0.0 10,695,832 11/12/2024
9.0.0-rc.2.24474.1 192,135 10/8/2024
9.0.0-rc.1.24451.1 123,829 9/10/2024
9.0.0-preview.7.24405.3 80,317 8/13/2024
9.0.0-preview.6.24327.4 118,508 7/9/2024
9.0.0-preview.5.24306.3 43,893 6/11/2024
9.0.0-preview.4.24267.1 58,268 5/21/2024
9.0.0-preview.3.24172.4 171,489 4/11/2024
9.0.0-preview.2.24128.4 67,008 3/12/2024
9.0.0-preview.1.24081.2 103,893 2/13/2024
8.0.15 67,467 4/8/2025
8.0.14 1,082,708 3/11/2025
8.0.13 2,036,076 2/11/2025
8.0.12 2,643,776 1/14/2025
8.0.11 11,854,032 11/12/2024
8.0.10 16,831,535 10/8/2024
8.0.8 21,806,113 8/13/2024
8.0.7 13,903,168 7/9/2024
8.0.6 16,078,994 5/28/2024
8.0.5 6,954,439 5/14/2024
8.0.4 25,561,293 4/9/2024
8.0.3 10,795,570 3/12/2024
8.0.2 20,948,459 2/13/2024
8.0.1 13,749,712 1/9/2024
8.0.0 39,959,723 11/14/2023
8.0.0-rc.2.23480.1 515,902 10/10/2023
8.0.0-rc.1.23419.6 143,916 9/12/2023
8.0.0-preview.7.23375.4 113,818 8/8/2023
8.0.0-preview.6.23329.4 195,210 7/11/2023
8.0.0-preview.5.23280.1 175,877 6/13/2023
8.0.0-preview.4.23259.3 134,869 5/16/2023
8.0.0-preview.3.23174.2 225,256 4/11/2023
8.0.0-preview.2.23128.3 194,980 3/14/2023
8.0.0-preview.1.23111.4 138,620 2/21/2023
7.0.20 3,079,917 5/28/2024
7.0.19 497,232 5/14/2024
7.0.18 2,162,140 4/9/2024
7.0.17 1,575,628 3/12/2024
7.0.16 2,009,568 2/13/2024
7.0.15 3,138,096 1/9/2024
7.0.14 5,941,123 11/14/2023
7.0.13 6,574,816 10/24/2023
7.0.12 4,350,122 10/10/2023
7.0.11 13,295,676 9/12/2023
7.0.10 9,523,428 8/8/2023
7.0.9 8,871,529 7/11/2023
7.0.8 5,420,506 6/22/2023
7.0.7 3,729,895 6/13/2023
7.0.5 25,254,113 4/11/2023
7.0.4 9,323,351 3/14/2023
7.0.3 13,627,789 2/14/2023
7.0.2 18,483,408 1/10/2023
7.0.1 9,916,274 12/13/2022
7.0.0 29,346,856 11/7/2022
7.0.0-rc.2.22472.11 218,934 10/11/2022
7.0.0-rc.1.22426.7 213,749 9/14/2022
7.0.0-preview.7.22376.2 97,794 8/9/2022
7.0.0-preview.6.22329.4 76,465 7/12/2022
7.0.0-preview.5.22302.2 64,753 6/14/2022
7.0.0-preview.4.22229.2 83,987 5/10/2022
7.0.0-preview.3.22175.1 78,349 4/13/2022
7.0.0-preview.2.22153.1 86,063 3/14/2022
7.0.0-preview.1.22076.6 58,245 2/17/2022
6.0.36 912,257 11/12/2024
6.0.35 574,677 10/8/2024
6.0.33 1,562,452 8/13/2024
6.0.32 728,179 7/9/2024
6.0.31 1,009,987 5/28/2024
6.0.30 533,504 5/14/2024
6.0.29 2,545,450 4/9/2024
6.0.28 1,491,174 3/12/2024
6.0.27 1,790,795 2/13/2024
6.0.26 2,559,786 1/9/2024
6.0.25 3,534,574 11/14/2023
6.0.24 1,840,490 10/24/2023
6.0.23 1,215,993 10/10/2023
6.0.22 3,306,280 9/12/2023
6.0.21 3,506,139 8/8/2023
6.0.20 2,815,160 7/11/2023
6.0.19 2,364,640 6/22/2023
6.0.18 1,258,767 6/13/2023
6.0.16 7,440,001 4/11/2023
6.0.15 4,116,359 3/14/2023
6.0.14 5,215,116 2/14/2023
6.0.13 6,847,046 1/10/2023
6.0.12 10,674,507 12/13/2022
6.0.11 9,791,106 11/7/2022
6.0.10 17,297,184 10/11/2022
6.0.9 15,125,719 9/13/2022
6.0.8 18,186,818 8/9/2022
6.0.7 49,124,544 7/12/2022
6.0.6 14,596,074 6/14/2022
6.0.5 22,267,719 5/10/2022
6.0.4 17,753,071 4/11/2022
6.0.3 24,349,292 3/8/2022
6.0.2 19,600,162 2/8/2022
6.0.1 32,456,162 12/14/2021
6.0.0 67,539,034 11/8/2021
6.0.0-rc.2.21480.5 324,156 10/12/2021
6.0.0-rc.1.21452.10 265,672 9/14/2021
6.0.0-preview.7.21378.4 97,084 8/10/2021
6.0.0-preview.6.21352.1 43,704 7/14/2021
6.0.0-preview.5.21301.9 187,067 6/15/2021
6.0.0-preview.4.21253.1 72,774 5/24/2021
6.0.0-preview.3.21201.2 96,893 4/8/2021
6.0.0-preview.2.21154.2 73,044 3/11/2021
6.0.0-preview.1.21102.2 95,921 2/12/2021
5.0.17 7,619,125 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,492,518 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,332,278 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,353,440 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,442,045 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,826,587 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,389,202 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,386,628 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,290,570 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,587,089 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,376,675 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,185,195 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,410,123 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,275,409 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 8,070,194 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,517,647 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,917,439 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 26,620,710 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 380,251 10/13/2020
5.0.0-rc.1.20451.13 318,823 9/14/2020
5.0.0-preview.8.20407.4 202,814 8/25/2020
5.0.0-preview.7.20365.15 114,706 7/21/2020
5.0.0-preview.6.20312.4 63,926 6/25/2020
5.0.0-preview.5.20278.2 49,404 6/10/2020
5.0.0-preview.4.20220.10 73,807 5/18/2020
5.0.0-preview.3.20181.2 94,645 4/23/2020
5.0.0-preview.2.20159.4 61,654 4/2/2020
5.0.0-preview.2.20120.8 46,102 3/16/2020
3.1.32 5,614,393 12/13/2022
3.1.31 1,093,161 11/8/2022
3.1.30 739,581 10/11/2022
3.1.29 1,277,078 9/13/2022
3.1.28 846,293 8/9/2022
3.1.27 747,701 7/12/2022
3.1.26 652,474 6/14/2022
3.1.25 1,090,153 5/10/2022
3.1.24 656,860 4/11/2022
3.1.23 1,069,249 3/8/2022
3.1.22 3,435,950 12/14/2021
3.1.21 2,636,214 11/7/2021
3.1.20 1,572,415 10/11/2021
3.1.19 2,476,651 9/14/2021
3.1.18 5,302,296 8/10/2021
3.1.17 1,896,234 7/13/2021
3.1.16 2,389,795 6/8/2021
3.1.15 2,849,121 5/11/2021
3.1.14 3,122,169 4/6/2021
3.1.13 4,618,772 3/9/2021
3.1.12 3,015,514 2/9/2021
3.1.11 5,466,877 1/12/2021
3.1.10 8,362,023 11/9/2020
3.1.9 12,061,873 10/13/2020
3.1.8 17,741,768 9/8/2020
3.1.7 10,098,346 8/11/2020
3.1.6 10,815,720 7/14/2020
3.1.5 12,872,209 6/9/2020
3.1.4 17,977,915 5/12/2020
3.1.3 28,042,548 3/24/2020
3.1.2 11,946,500 2/19/2020
3.1.1 20,049,947 1/14/2020
3.1.0 34,329,924 12/3/2019
3.1.0-preview3.19554.8 164,762 11/13/2019
3.1.0-preview2.19525.5 32,746 11/1/2019
3.1.0-preview1.19506.2 761,182 10/15/2019
3.0.3 189,605 2/19/2020
3.0.2 80,182 1/14/2020
3.0.1 1,405,538 11/18/2019
3.0.0 19,073,227 9/23/2019
3.0.0-rc1.19456.14 46,710 9/16/2019
3.0.0-preview9.19423.6 1,380,997 9/4/2019
3.0.0-preview8.19405.11 412,661 8/13/2019
3.0.0-preview7.19362.6 90,577 7/23/2019
3.0.0-preview6.19304.10 168,067 6/12/2019
3.0.0-preview5.19227.1 671,682 5/6/2019
3.0.0-preview4.19216.3 22,995 4/18/2019
3.0.0-preview3.19153.1 202,325 3/6/2019
3.0.0-preview.19074.3 31,623 1/29/2019
3.0.0-preview.18572.1 48,573 12/3/2018
2.3.0 9,892 1/14/2025
2.2.6 31,756,946 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,548,061 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,338,887 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,435,810 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,892,651 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 21,708,704 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 184,857 10/17/2018
2.2.0-preview2-35157 149,020 9/12/2018
2.2.0-preview1-35029 82,169 8/22/2018
2.1.14 3,968,874 11/18/2019
2.1.11 3,699,089 5/14/2019
2.1.8 3,759,475 2/12/2019
2.1.4 15,553,022 10/1/2018
2.1.3 4,891,845 9/11/2018
2.1.2 8,106,161 8/21/2018
2.1.1 16,364,018 6/18/2018
2.1.0 13,269,279 5/29/2018
2.1.0-rc1-final 224,279 5/6/2018
2.1.0-preview2-final 205,346 4/10/2018
2.1.0-preview1-final 316,673 2/26/2018
2.0.3 5,341,688 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,673,309 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,512,612 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 27,272,938 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 96,106 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,117,788 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,857,214 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,247,393 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 224,073 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 308,170 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 5,008,524 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,183,657 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 7,288,673 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,532 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 54,770 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 43,159 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 57,818 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 651,079 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 78,351 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 791,095 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,753,746 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 140,423 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.