Microsoft.EntityFrameworkCore 8.0.12

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

Requires NuGet 3.6 or higher.

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

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

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

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.1 180,084 1/14/2025
9.0.0 4,132,330 11/12/2024
9.0.0-rc.2.24474.1 155,072 10/8/2024
9.0.0-rc.1.24451.1 106,775 9/10/2024
9.0.0-preview.7.24405.3 60,917 8/13/2024
9.0.0-preview.6.24327.4 78,663 7/9/2024
9.0.0-preview.5.24306.3 35,756 6/11/2024
9.0.0-preview.4.24267.1 51,400 5/21/2024
9.0.0-preview.3.24172.4 161,230 4/11/2024
9.0.0-preview.2.24128.4 58,854 3/12/2024
9.0.0-preview.1.24081.2 84,994 2/13/2024
8.0.12 96,592 1/14/2025
8.0.11 4,442,549 11/12/2024
8.0.10 10,268,387 10/8/2024
8.0.8 15,839,027 8/13/2024
8.0.7 10,800,085 7/9/2024
8.0.6 13,037,793 5/28/2024
8.0.5 5,744,219 5/14/2024
8.0.4 20,448,513 4/9/2024
8.0.3 9,128,937 3/12/2024
8.0.2 16,745,542 2/13/2024
8.0.1 11,610,474 1/9/2024
8.0.0 30,990,076 11/14/2023
8.0.0-rc.2.23480.1 477,326 10/10/2023
8.0.0-rc.1.23419.6 137,666 9/12/2023
8.0.0-preview.7.23375.4 104,051 8/8/2023
8.0.0-preview.6.23329.4 172,268 7/11/2023
8.0.0-preview.5.23280.1 133,536 6/13/2023
8.0.0-preview.4.23259.3 127,022 5/16/2023
8.0.0-preview.3.23174.2 198,551 4/11/2023
8.0.0-preview.2.23128.3 190,814 3/14/2023
8.0.0-preview.1.23111.4 136,266 2/21/2023
7.0.20 2,179,028 5/28/2024
7.0.19 427,440 5/14/2024
7.0.18 1,789,510 4/9/2024
7.0.17 1,429,392 3/12/2024
7.0.16 1,836,732 2/13/2024
7.0.15 2,884,357 1/9/2024
7.0.14 5,498,602 11/14/2023
7.0.13 5,963,881 10/24/2023
7.0.12 4,100,021 10/10/2023
7.0.11 12,333,051 9/12/2023
7.0.10 9,049,260 8/8/2023
7.0.9 8,287,916 7/11/2023
7.0.8 5,172,199 6/22/2023
7.0.7 3,588,208 6/13/2023
7.0.5 24,071,288 4/11/2023
7.0.4 9,014,692 3/14/2023
7.0.3 13,044,400 2/14/2023
7.0.2 17,589,624 1/10/2023
7.0.1 9,518,406 12/13/2022
7.0.0 26,553,591 11/7/2022
7.0.0-rc.2.22472.11 213,230 10/11/2022
7.0.0-rc.1.22426.7 211,634 9/14/2022
7.0.0-preview.7.22376.2 94,358 8/9/2022
7.0.0-preview.6.22329.4 73,952 7/12/2022
7.0.0-preview.5.22302.2 63,334 6/14/2022
7.0.0-preview.4.22229.2 78,911 5/10/2022
7.0.0-preview.3.22175.1 77,356 4/13/2022
7.0.0-preview.2.22153.1 85,111 3/14/2022
7.0.0-preview.1.22076.6 57,085 2/17/2022
6.0.36 290,210 11/12/2024
6.0.35 384,396 10/8/2024
6.0.33 1,077,821 8/13/2024
6.0.32 589,550 7/9/2024
6.0.31 861,561 5/28/2024
6.0.30 432,404 5/14/2024
6.0.29 2,153,628 4/9/2024
6.0.28 1,283,372 3/12/2024
6.0.27 1,602,993 2/13/2024
6.0.26 2,357,177 1/9/2024
6.0.25 3,230,938 11/14/2023
6.0.24 1,678,724 10/24/2023
6.0.23 1,151,072 10/10/2023
6.0.22 3,103,707 9/12/2023
6.0.21 3,290,957 8/8/2023
6.0.20 2,657,091 7/11/2023
6.0.19 2,211,617 6/22/2023
6.0.18 1,198,562 6/13/2023
6.0.16 7,017,117 4/11/2023
6.0.15 3,940,484 3/14/2023
6.0.14 4,955,727 2/14/2023
6.0.13 6,588,641 1/10/2023
6.0.12 10,187,900 12/13/2022
6.0.11 9,416,775 11/7/2022
6.0.10 16,705,712 10/11/2022
6.0.9 14,660,112 9/13/2022
6.0.8 17,522,639 8/9/2022
6.0.7 47,248,507 7/12/2022
6.0.6 14,101,926 6/14/2022
6.0.5 21,534,557 5/10/2022
6.0.4 17,272,084 4/11/2022
6.0.3 23,229,552 3/8/2022
6.0.2 19,064,741 2/8/2022
6.0.1 31,367,860 12/14/2021
6.0.0 62,809,882 11/8/2021
6.0.0-rc.2.21480.5 318,079 10/12/2021
6.0.0-rc.1.21452.10 242,838 9/14/2021
6.0.0-preview.7.21378.4 95,061 8/10/2021
6.0.0-preview.6.21352.1 43,260 7/14/2021
6.0.0-preview.5.21301.9 183,893 6/15/2021
6.0.0-preview.4.21253.1 71,500 5/24/2021
6.0.0-preview.3.21201.2 94,422 4/8/2021
6.0.0-preview.2.21154.2 72,845 3/11/2021
6.0.0-preview.1.21102.2 94,243 2/12/2021
5.0.17 7,221,086 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,456,641 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,271,680 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,315,415 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,332,950 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,731,532 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,242,879 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,085,093 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,104,562 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,365,058 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,132,945 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,063,771 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,210,351 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,164,882 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,984,251 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,407,788 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,608,255 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 25,867,976 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 376,655 10/13/2020
5.0.0-rc.1.20451.13 317,760 9/14/2020
5.0.0-preview.8.20407.4 200,969 8/25/2020
5.0.0-preview.7.20365.15 113,526 7/21/2020
5.0.0-preview.6.20312.4 63,464 6/25/2020
5.0.0-preview.5.20278.2 48,306 6/10/2020
5.0.0-preview.4.20220.10 73,275 5/18/2020
5.0.0-preview.3.20181.2 93,853 4/23/2020
5.0.0-preview.2.20159.4 61,117 4/2/2020
5.0.0-preview.2.20120.8 45,825 3/16/2020
3.1.32 4,683,404 12/13/2022
3.1.31 955,671 11/8/2022
3.1.30 691,312 10/11/2022
3.1.29 1,155,336 9/13/2022
3.1.28 802,506 8/9/2022
3.1.27 716,270 7/12/2022
3.1.26 618,218 6/14/2022
3.1.25 1,052,867 5/10/2022
3.1.24 641,081 4/11/2022
3.1.23 1,036,446 3/8/2022
3.1.22 3,271,412 12/14/2021
3.1.21 2,561,817 11/7/2021
3.1.20 1,494,795 10/11/2021
3.1.19 2,426,911 9/14/2021
3.1.18 5,153,576 8/10/2021
3.1.17 1,848,983 7/13/2021
3.1.16 2,345,384 6/8/2021
3.1.15 2,759,729 5/11/2021
3.1.14 3,070,879 4/6/2021
3.1.13 4,512,285 3/9/2021
3.1.12 2,968,680 2/9/2021
3.1.11 5,370,500 1/12/2021
3.1.10 8,277,675 11/9/2020
3.1.9 11,898,658 10/13/2020
3.1.8 17,582,684 9/8/2020
3.1.7 9,908,362 8/11/2020
3.1.6 10,672,820 7/14/2020
3.1.5 12,668,856 6/9/2020
3.1.4 17,735,826 5/12/2020
3.1.3 27,578,552 3/24/2020
3.1.2 11,795,137 2/19/2020
3.1.1 19,761,703 1/14/2020
3.1.0 33,626,764 12/3/2019
3.1.0-preview3.19554.8 164,114 11/13/2019
3.1.0-preview2.19525.5 32,446 11/1/2019
3.1.0-preview1.19506.2 748,133 10/15/2019
3.0.3 185,631 2/19/2020
3.0.2 79,549 1/14/2020
3.0.1 1,391,305 11/18/2019
3.0.0 18,737,951 9/23/2019
3.0.0-rc1.19456.14 46,453 9/16/2019
3.0.0-preview9.19423.6 1,367,172 9/4/2019
3.0.0-preview8.19405.11 412,255 8/13/2019
3.0.0-preview7.19362.6 90,025 7/23/2019
3.0.0-preview6.19304.10 166,757 6/12/2019
3.0.0-preview5.19227.1 670,557 5/6/2019
3.0.0-preview4.19216.3 22,784 4/18/2019
3.0.0-preview3.19153.1 201,719 3/6/2019
3.0.0-preview.19074.3 30,922 1/29/2019
3.0.0-preview.18572.1 48,192 12/3/2018
2.3.0 563 1/14/2025
2.2.6 31,289,801 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,365,127 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,301,119 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,379,994 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,834,507 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 21,201,850 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 184,282 10/17/2018
2.2.0-preview2-35157 146,041 9/12/2018
2.2.0-preview1-35029 81,016 8/22/2018
2.1.14 3,882,137 11/18/2019
2.1.11 3,678,923 5/14/2019
2.1.8 3,693,454 2/12/2019
2.1.4 15,425,098 10/1/2018
2.1.3 4,866,963 9/11/2018
2.1.2 8,055,565 8/21/2018
2.1.1 15,799,049 6/18/2018
2.1.0 13,108,222 5/29/2018
2.1.0-rc1-final 222,952 5/6/2018
2.1.0-preview2-final 203,939 4/10/2018
2.1.0-preview1-final 315,583 2/26/2018
2.0.3 5,269,008 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,588,145 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,348,515 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,741,614 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,523 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,102,159 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,663,919 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,238,917 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 219,930 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 306,711 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,896,908 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,101,831 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,836,887 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,242 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 53,769 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 42,419 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 57,146 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 624,916 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 77,967 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 751,017 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,590,529 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 136,856 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.