Microsoft.EntityFrameworkCore 9.0.9

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.9
                    
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.9
                    
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.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
                    
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.9
                    
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.9"
                    
#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.
#:package Microsoft.EntityFrameworkCore@9.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.9
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.9
                    
Install 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9.4K)

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.VisualStudio.Web.CodeGenerators.Mvc

Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.

Microsoft.VisualStudio.Web.CodeGeneration.Design

Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.

GitHub repositories (648)

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

Repository Stars
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
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 RC 1, 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
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
EduardoPires/EquinoxProject
Web Application ASP.NET 9 using Clean Architecture, DDD, CQRS, Event Sourcing and a lot of good practices
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.
ldqk/Masuit.Tools
全龄段友好的C#万能工具库,码数吐司库,包含一些常用的操作类,大都是静态类,加密解密,反射操作,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展、Excel导出等常用封装。诸多功能集一身,代码量不到2MB!
graphql-dotnet/graphql-dotnet
GraphQL for .NET
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.
MapsterMapper/Mapster
A fast, fun and stimulating object to object Mapper
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
microsoft/fluentui-blazor
Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
cobbr/Covenant
Covenant is a collaborative .NET C2 framework for red teamers.
Version Downloads Last Updated
10.0.0-rc.1.25451.107 283 9/9/2025
10.0.0-preview.7.25380.108 26,103 8/12/2025
10.0.0-preview.6.25358.103 12,960 7/15/2025
10.0.0-preview.5.25277.114 41,692 6/6/2025
10.0.0-preview.4.25258.110 26,291 5/12/2025
10.0.0-preview.3.25171.6 20,607 4/10/2025
10.0.0-preview.2.25163.8 52,450 3/18/2025
10.0.0-preview.1.25081.1 12,517 2/25/2025
9.0.9 13,986 9/9/2025
9.0.8 2,890,892 8/5/2025
9.0.7 2,715,316 7/8/2025
9.0.6 3,995,974 6/10/2025
9.0.5 5,634,199 5/13/2025
9.0.4 7,425,082 4/8/2025
9.0.3 7,442,079 3/11/2025
9.0.2 7,878,524 2/11/2025
9.0.1 16,107,584 1/14/2025
9.0.0 20,459,525 11/12/2024
9.0.0-rc.2.24474.1 227,793 10/8/2024
9.0.0-rc.1.24451.1 143,442 9/10/2024
9.0.0-preview.7.24405.3 99,830 8/13/2024
9.0.0-preview.6.24327.4 197,591 7/9/2024
9.0.0-preview.5.24306.3 64,397 6/11/2024
9.0.0-preview.4.24267.1 68,459 5/21/2024
9.0.0-preview.3.24172.4 183,739 4/11/2024
9.0.0-preview.2.24128.4 81,345 3/12/2024
9.0.0-preview.1.24081.2 132,566 2/13/2024
8.0.20 4,074 9/9/2025
8.0.19 914,368 8/5/2025
8.0.18 801,129 7/8/2025
8.0.17 2,176,149 6/10/2025
8.0.16 2,046,263 5/13/2025
8.0.15 3,229,216 4/8/2025
8.0.14 4,123,366 3/11/2025
8.0.13 5,853,026 2/11/2025
8.0.12 5,281,299 1/14/2025
8.0.11 22,730,566 11/12/2024
8.0.10 25,007,517 10/8/2024
8.0.8 29,645,578 8/13/2024
8.0.7 18,068,765 7/9/2024
8.0.6 20,296,349 5/28/2024
8.0.5 8,577,027 5/14/2024
8.0.4 32,742,558 4/9/2024
8.0.3 13,211,686 3/12/2024
8.0.2 27,085,421 2/13/2024
8.0.1 16,876,420 1/9/2024
8.0.0 54,114,091 11/14/2023
8.0.0-rc.2.23480.1 562,191 10/10/2023
8.0.0-rc.1.23419.6 158,844 9/12/2023
8.0.0-preview.7.23375.4 126,010 8/8/2023
8.0.0-preview.6.23329.4 225,580 7/11/2023
8.0.0-preview.5.23280.1 199,208 6/13/2023
8.0.0-preview.4.23259.3 144,294 5/16/2023
8.0.0-preview.3.23174.2 276,223 4/11/2023
8.0.0-preview.2.23128.3 200,497 3/14/2023
8.0.0-preview.1.23111.4 141,781 2/21/2023
7.0.20 4,519,062 5/28/2024
7.0.19 575,259 5/14/2024
7.0.18 2,655,356 4/9/2024
7.0.17 1,724,566 3/12/2024
7.0.16 2,223,642 2/13/2024
7.0.15 3,468,168 1/9/2024
7.0.14 6,486,171 11/14/2023
7.0.13 7,364,335 10/24/2023
7.0.12 4,614,870 10/10/2023
7.0.11 14,710,583 9/12/2023
7.0.10 10,185,475 8/8/2023
7.0.9 9,607,128 7/11/2023
7.0.8 5,822,861 6/22/2023
7.0.7 3,907,614 6/13/2023
7.0.5 27,054,635 4/11/2023
7.0.4 9,730,237 3/14/2023
7.0.3 14,390,429 2/14/2023
7.0.2 19,808,732 1/10/2023
7.0.1 10,529,247 12/13/2022
7.0.0 33,955,841 11/7/2022
7.0.0-rc.2.22472.11 228,557 10/11/2022
7.0.0-rc.1.22426.7 216,872 9/14/2022
7.0.0-preview.7.22376.2 100,325 8/9/2022
7.0.0-preview.6.22329.4 78,637 7/12/2022
7.0.0-preview.5.22302.2 66,125 6/14/2022
7.0.0-preview.4.22229.2 90,919 5/10/2022
7.0.0-preview.3.22175.1 79,527 4/13/2022
7.0.0-preview.2.22153.1 86,811 3/14/2022
7.0.0-preview.1.22076.6 59,398 2/17/2022
6.0.36 2,191,630 11/12/2024
6.0.35 802,917 10/8/2024
6.0.33 2,120,517 8/13/2024
6.0.32 890,892 7/9/2024
6.0.31 1,206,527 5/28/2024
6.0.30 688,604 5/14/2024
6.0.29 3,085,813 4/9/2024
6.0.28 1,774,024 3/12/2024
6.0.27 2,024,817 2/13/2024
6.0.26 2,822,024 1/9/2024
6.0.25 3,889,732 11/14/2023
6.0.24 1,983,043 10/24/2023
6.0.23 1,295,190 10/10/2023
6.0.22 3,540,072 9/12/2023
6.0.21 3,774,898 8/8/2023
6.0.20 3,026,280 7/11/2023
6.0.19 2,544,787 6/22/2023
6.0.18 1,334,268 6/13/2023
6.0.16 7,909,809 4/11/2023
6.0.15 4,368,708 3/14/2023
6.0.14 5,479,414 2/14/2023
6.0.13 7,191,443 1/10/2023
6.0.12 11,293,993 12/13/2022
6.0.11 10,266,411 11/7/2022
6.0.10 18,082,870 10/11/2022
6.0.9 15,782,925 9/13/2022
6.0.8 19,045,718 8/9/2022
6.0.7 51,504,900 7/12/2022
6.0.6 15,348,646 6/14/2022
6.0.5 23,315,249 5/10/2022
6.0.4 18,400,990 4/11/2022
6.0.3 26,192,284 3/8/2022
6.0.2 20,324,389 2/8/2022
6.0.1 34,149,872 12/14/2021
6.0.0 74,563,199 11/8/2021
6.0.0-rc.2.21480.5 333,868 10/12/2021
6.0.0-rc.1.21452.10 273,572 9/14/2021
6.0.0-preview.7.21378.4 101,812 8/10/2021
6.0.0-preview.6.21352.1 44,967 7/14/2021
6.0.0-preview.5.21301.9 191,593 6/15/2021
6.0.0-preview.4.21253.1 79,351 5/24/2021
6.0.0-preview.3.21201.2 102,745 4/8/2021
6.0.0-preview.2.21154.2 75,192 3/11/2021
6.0.0-preview.1.21102.2 98,216 2/12/2021
5.0.17 8,204,790 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,540,640 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,393,093 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,410,750 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,590,989 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,941,176 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,618,221 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,892,150 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,598,268 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,934,565 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,878,736 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,399,171 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,755,822 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,485,315 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 8,221,231 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,700,759 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 16,435,130 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 27,939,296 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 389,201 10/13/2020
5.0.0-rc.1.20451.13 323,015 9/14/2020
5.0.0-preview.8.20407.4 209,298 8/25/2020
5.0.0-preview.7.20365.15 118,640 7/21/2020
5.0.0-preview.6.20312.4 64,420 6/25/2020
5.0.0-preview.5.20278.2 51,190 6/10/2020
5.0.0-preview.4.20220.10 74,544 5/18/2020
5.0.0-preview.3.20181.2 95,327 4/23/2020
5.0.0-preview.2.20159.4 62,594 4/2/2020
5.0.0-preview.2.20120.8 46,404 3/16/2020
3.1.32 7,107,690 12/13/2022
3.1.31 1,490,862 11/8/2022
3.1.30 816,883 10/11/2022
3.1.29 1,443,867 9/13/2022
3.1.28 919,686 8/9/2022
3.1.27 799,015 7/12/2022
3.1.26 703,853 6/14/2022
3.1.25 1,144,653 5/10/2022
3.1.24 679,751 4/11/2022
3.1.23 1,110,997 3/8/2022
3.1.22 3,718,776 12/14/2021
3.1.21 2,714,810 11/7/2021
3.1.20 1,701,366 10/11/2021
3.1.19 2,550,785 9/14/2021
3.1.18 5,656,482 8/10/2021
3.1.17 1,960,620 7/13/2021
3.1.16 2,453,250 6/8/2021
3.1.15 2,983,012 5/11/2021
3.1.14 3,201,406 4/6/2021
3.1.13 4,803,225 3/9/2021
3.1.12 3,081,790 2/9/2021
3.1.11 5,588,672 1/12/2021
3.1.10 8,500,178 11/9/2020
3.1.9 12,306,058 10/13/2020
3.1.8 17,963,436 9/8/2020
3.1.7 10,384,077 8/11/2020
3.1.6 11,031,698 7/14/2020
3.1.5 13,110,558 6/9/2020
3.1.4 18,377,398 5/12/2020
3.1.3 28,719,818 3/24/2020
3.1.2 12,152,239 2/19/2020
3.1.1 20,588,802 1/14/2020
3.1.0 35,399,921 12/3/2019
3.1.0-preview3.19554.8 165,933 11/13/2019
3.1.0-preview2.19525.5 33,330 11/1/2019
3.1.0-preview1.19506.2 780,966 10/15/2019
3.0.3 196,497 2/19/2020
3.0.2 82,199 1/14/2020
3.0.1 1,428,414 11/18/2019
3.0.0 19,538,075 9/23/2019
3.0.0-rc1.19456.14 47,010 9/16/2019
3.0.0-preview9.19423.6 1,395,412 9/4/2019
3.0.0-preview8.19405.11 413,342 8/13/2019
3.0.0-preview7.19362.6 94,113 7/23/2019
3.0.0-preview6.19304.10 168,728 6/12/2019
3.0.0-preview5.19227.1 672,889 5/6/2019
3.0.0-preview4.19216.3 23,253 4/18/2019
3.0.0-preview3.19153.1 203,028 3/6/2019
3.0.0-preview.19074.3 32,559 1/29/2019
3.0.0-preview.18572.1 49,026 12/3/2018
2.3.0 32,532 1/14/2025
2.2.6 32,428,839 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,797,089 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,403,008 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,521,680 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,961,520 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 22,462,055 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 185,652 10/17/2018
2.2.0-preview2-35157 153,566 9/12/2018
2.2.0-preview1-35029 85,791 8/22/2018
2.1.14 4,093,373 11/18/2019
2.1.11 3,731,139 5/14/2019
2.1.8 3,866,607 2/12/2019
2.1.4 15,717,252 10/1/2018
2.1.3 4,939,928 9/11/2018
2.1.2 8,182,163 8/21/2018
2.1.1 17,272,435 6/18/2018
2.1.0 13,490,202 5/29/2018
2.1.0-rc1-final 225,139 5/6/2018
2.1.0-preview2-final 206,715 4/10/2018
2.1.0-preview1-final 319,159 2/26/2018
2.0.3 5,471,924 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,796,971 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,754,814 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 28,052,332 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 96,924 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,142,191 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 6,199,969 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,258,908 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 230,550 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 311,293 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 5,203,029 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,345,221 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 7,950,581 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,878 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 56,548 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 44,821 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 59,700 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 700,263 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 79,703 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 853,949 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 2,025,261 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 145,457 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.