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

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 510,907 1/14/2025
9.0.0 4,680,204 11/12/2024
9.0.0-rc.2.24474.1 159,124 10/8/2024
9.0.0-rc.1.24451.1 108,349 9/10/2024
9.0.0-preview.7.24405.3 63,448 8/13/2024
9.0.0-preview.6.24327.4 79,515 7/9/2024
9.0.0-preview.5.24306.3 36,205 6/11/2024
9.0.0-preview.4.24267.1 51,992 5/21/2024
9.0.0-preview.3.24172.4 161,966 4/11/2024
9.0.0-preview.2.24128.4 59,409 3/12/2024
9.0.0-preview.1.24081.2 86,359 2/13/2024
8.0.12 294,580 1/14/2025
8.0.11 5,021,172 11/12/2024
8.0.10 10,805,802 10/8/2024
8.0.8 16,326,852 8/13/2024
8.0.7 11,044,903 7/9/2024
8.0.6 13,277,432 5/28/2024
8.0.5 5,844,867 5/14/2024
8.0.4 20,846,370 4/9/2024
8.0.3 9,260,896 3/12/2024
8.0.2 17,079,190 2/13/2024
8.0.1 11,773,498 1/9/2024
8.0.0 31,659,037 11/14/2023
8.0.0-rc.2.23480.1 479,920 10/10/2023
8.0.0-rc.1.23419.6 138,231 9/12/2023
8.0.0-preview.7.23375.4 104,577 8/8/2023
8.0.0-preview.6.23329.4 174,172 7/11/2023
8.0.0-preview.5.23280.1 133,852 6/13/2023
8.0.0-preview.4.23259.3 127,509 5/16/2023
8.0.0-preview.3.23174.2 200,083 4/11/2023
8.0.0-preview.2.23128.3 191,166 3/14/2023
8.0.0-preview.1.23111.4 136,469 2/21/2023
7.0.20 2,239,172 5/28/2024
7.0.19 432,869 5/14/2024
7.0.18 1,818,311 4/9/2024
7.0.17 1,440,858 3/12/2024
7.0.16 1,851,126 2/13/2024
7.0.15 2,904,379 1/9/2024
7.0.14 5,533,315 11/14/2023
7.0.13 6,008,183 10/24/2023
7.0.12 4,119,001 10/10/2023
7.0.11 12,387,659 9/12/2023
7.0.10 9,083,937 8/8/2023
7.0.9 8,332,648 7/11/2023
7.0.8 5,187,414 6/22/2023
7.0.7 3,601,522 6/13/2023
7.0.5 24,159,581 4/11/2023
7.0.4 9,039,449 3/14/2023
7.0.3 13,087,520 2/14/2023
7.0.2 17,673,043 1/10/2023
7.0.1 9,542,895 12/13/2022
7.0.0 26,753,906 11/7/2022
7.0.0-rc.2.22472.11 213,525 10/11/2022
7.0.0-rc.1.22426.7 211,830 9/14/2022
7.0.0-preview.7.22376.2 94,615 8/9/2022
7.0.0-preview.6.22329.4 74,170 7/12/2022
7.0.0-preview.5.22302.2 63,451 6/14/2022
7.0.0-preview.4.22229.2 79,368 5/10/2022
7.0.0-preview.3.22175.1 77,411 4/13/2022
7.0.0-preview.2.22153.1 85,191 3/14/2022
7.0.0-preview.1.22076.6 57,109 2/17/2022
6.0.36 332,292 11/12/2024
6.0.35 401,858 10/8/2024
6.0.33 1,124,543 8/13/2024
6.0.32 600,818 7/9/2024
6.0.31 873,730 5/28/2024
6.0.30 437,857 5/14/2024
6.0.29 2,189,473 4/9/2024
6.0.28 1,299,195 3/12/2024
6.0.27 1,618,216 2/13/2024
6.0.26 2,375,297 1/9/2024
6.0.25 3,253,077 11/14/2023
6.0.24 1,689,644 10/24/2023
6.0.23 1,156,840 10/10/2023
6.0.22 3,120,631 9/12/2023
6.0.21 3,309,583 8/8/2023
6.0.20 2,669,419 7/11/2023
6.0.19 2,223,777 6/22/2023
6.0.18 1,203,744 6/13/2023
6.0.16 7,047,553 4/11/2023
6.0.15 3,952,338 3/14/2023
6.0.14 4,977,820 2/14/2023
6.0.13 6,606,898 1/10/2023
6.0.12 10,223,973 12/13/2022
6.0.11 9,447,404 11/7/2022
6.0.10 16,756,171 10/11/2022
6.0.9 14,698,362 9/13/2022
6.0.8 17,575,064 8/9/2022
6.0.7 47,391,386 7/12/2022
6.0.6 14,140,525 6/14/2022
6.0.5 21,593,149 5/10/2022
6.0.4 17,313,191 4/11/2022
6.0.3 23,331,154 3/8/2022
6.0.2 19,108,007 2/8/2022
6.0.1 31,443,769 12/14/2021
6.0.0 63,176,917 11/8/2021
6.0.0-rc.2.21480.5 318,708 10/12/2021
6.0.0-rc.1.21452.10 244,280 9/14/2021
6.0.0-preview.7.21378.4 95,148 8/10/2021
6.0.0-preview.6.21352.1 43,297 7/14/2021
6.0.0-preview.5.21301.9 184,131 6/15/2021
6.0.0-preview.4.21253.1 71,525 5/24/2021
6.0.0-preview.3.21201.2 94,523 4/8/2021
6.0.0-preview.2.21154.2 72,853 3/11/2021
6.0.0-preview.1.21102.2 94,376 2/12/2021
5.0.17 7,250,715 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,459,365 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,277,041 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,317,588 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,339,962 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,737,896 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,253,169 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,104,566 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,116,765 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,381,958 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,149,110 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,071,993 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,228,141 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,173,321 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,990,169 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,415,965 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,628,011 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 25,927,000 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 376,975 10/13/2020
5.0.0-rc.1.20451.13 317,831 9/14/2020
5.0.0-preview.8.20407.4 201,146 8/25/2020
5.0.0-preview.7.20365.15 113,604 7/21/2020
5.0.0-preview.6.20312.4 63,504 6/25/2020
5.0.0-preview.5.20278.2 48,336 6/10/2020
5.0.0-preview.4.20220.10 73,296 5/18/2020
5.0.0-preview.3.20181.2 93,892 4/23/2020
5.0.0-preview.2.20159.4 61,155 4/2/2020
5.0.0-preview.2.20120.8 45,840 3/16/2020
3.1.32 4,749,828 12/13/2022
3.1.31 964,337 11/8/2022
3.1.30 694,489 10/11/2022
3.1.29 1,165,519 9/13/2022
3.1.28 805,491 8/9/2022
3.1.27 717,699 7/12/2022
3.1.26 620,994 6/14/2022
3.1.25 1,055,924 5/10/2022
3.1.24 642,423 4/11/2022
3.1.23 1,038,798 3/8/2022
3.1.22 3,286,571 12/14/2021
3.1.21 2,565,706 11/7/2021
3.1.20 1,501,011 10/11/2021
3.1.19 2,430,652 9/14/2021
3.1.18 5,162,240 8/10/2021
3.1.17 1,851,956 7/13/2021
3.1.16 2,348,273 6/8/2021
3.1.15 2,766,601 5/11/2021
3.1.14 3,074,064 4/6/2021
3.1.13 4,520,341 3/9/2021
3.1.12 2,972,507 2/9/2021
3.1.11 5,377,370 1/12/2021
3.1.10 8,284,577 11/9/2020
3.1.9 11,909,211 10/13/2020
3.1.8 17,594,825 9/8/2020
3.1.7 9,919,284 8/11/2020
3.1.6 10,680,987 7/14/2020
3.1.5 12,684,359 6/9/2020
3.1.4 17,754,434 5/12/2020
3.1.3 27,611,583 3/24/2020
3.1.2 11,806,420 2/19/2020
3.1.1 19,782,469 1/14/2020
3.1.0 33,683,062 12/3/2019
3.1.0-preview3.19554.8 164,137 11/13/2019
3.1.0-preview2.19525.5 32,481 11/1/2019
3.1.0-preview1.19506.2 749,036 10/15/2019
3.0.3 185,826 2/19/2020
3.0.2 79,598 1/14/2020
3.0.1 1,392,336 11/18/2019
3.0.0 18,761,705 9/23/2019
3.0.0-rc1.19456.14 46,461 9/16/2019
3.0.0-preview9.19423.6 1,368,391 9/4/2019
3.0.0-preview8.19405.11 412,281 8/13/2019
3.0.0-preview7.19362.6 90,056 7/23/2019
3.0.0-preview6.19304.10 166,861 6/12/2019
3.0.0-preview5.19227.1 670,624 5/6/2019
3.0.0-preview4.19216.3 22,786 4/18/2019
3.0.0-preview3.19153.1 201,797 3/6/2019
3.0.0-preview.19074.3 30,943 1/29/2019
3.0.0-preview.18572.1 48,203 12/3/2018
2.3.0 1,104 1/14/2025
2.2.6 31,325,423 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,377,939 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,303,442 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,384,235 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,838,559 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 21,238,733 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 184,318 10/17/2018
2.2.0-preview2-35157 146,259 9/12/2018
2.2.0-preview1-35029 81,043 8/22/2018
2.1.14 3,888,369 11/18/2019
2.1.11 3,680,458 5/14/2019
2.1.8 3,698,488 2/12/2019
2.1.4 15,431,524 10/1/2018
2.1.3 4,868,633 9/11/2018
2.1.2 8,060,279 8/21/2018
2.1.1 15,841,557 6/18/2018
2.1.0 13,119,442 5/29/2018
2.1.0-rc1-final 223,020 5/6/2018
2.1.0-preview2-final 204,033 4/10/2018
2.1.0-preview1-final 315,676 2/26/2018
2.0.3 5,273,250 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,594,686 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,360,825 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,785,257 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,555 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,103,332 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,675,688 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,239,581 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 220,126 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 306,842 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,904,983 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,106,447 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,866,334 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,918 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 42,467 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 57,213 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 626,923 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 77,994 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 754,430 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,601,303 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 137,198 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.