Microsoft.EntityFrameworkCore 8.0.11

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

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

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (8.1K)

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

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.0 48,780 11/12/2024
9.0.0-rc.2.24474.1 86,843 10/8/2024
9.0.0-rc.1.24451.1 75,058 9/10/2024
9.0.0-preview.7.24405.3 39,803 8/13/2024
9.0.0-preview.6.24327.4 61,879 7/9/2024
9.0.0-preview.5.24306.3 32,404 6/11/2024
9.0.0-preview.4.24267.1 44,112 5/21/2024
9.0.0-preview.3.24172.4 152,397 4/11/2024
9.0.0-preview.2.24128.4 52,064 3/12/2024
9.0.0-preview.1.24081.2 72,445 2/13/2024
8.0.11 44,177 11/12/2024
8.0.10 4,477,040 10/8/2024
8.0.8 11,070,977 8/13/2024
8.0.7 8,421,983 7/9/2024
8.0.6 10,716,310 5/28/2024
8.0.5 4,782,648 5/14/2024
8.0.4 16,653,510 4/9/2024
8.0.3 7,916,921 3/12/2024
8.0.2 13,878,680 2/13/2024
8.0.1 10,196,809 1/9/2024
8.0.0 25,220,038 11/14/2023
8.0.0-rc.2.23480.1 450,281 10/10/2023
8.0.0-rc.1.23419.6 133,014 9/12/2023
8.0.0-preview.7.23375.4 95,772 8/8/2023
8.0.0-preview.6.23329.4 156,505 7/11/2023
8.0.0-preview.5.23280.1 126,087 6/13/2023
8.0.0-preview.4.23259.3 121,825 5/16/2023
8.0.0-preview.3.23174.2 185,625 4/11/2023
8.0.0-preview.2.23128.3 187,889 3/14/2023
8.0.0-preview.1.23111.4 134,120 2/21/2023
7.0.20 1,587,215 5/28/2024
7.0.19 372,463 5/14/2024
7.0.18 1,520,645 4/9/2024
7.0.17 1,310,518 3/12/2024
7.0.16 1,713,646 2/13/2024
7.0.15 2,680,789 1/9/2024
7.0.14 5,177,101 11/14/2023
7.0.13 5,581,512 10/24/2023
7.0.12 3,926,603 10/10/2023
7.0.11 11,665,235 9/12/2023
7.0.10 8,679,996 8/8/2023
7.0.9 7,857,926 7/11/2023
7.0.8 4,987,337 6/22/2023
7.0.7 3,472,366 6/13/2023
7.0.5 23,165,914 4/11/2023
7.0.4 8,784,053 3/14/2023
7.0.3 12,612,866 2/14/2023
7.0.2 16,868,258 1/10/2023
7.0.1 9,223,546 12/13/2022
7.0.0 24,818,426 11/7/2022
7.0.0-rc.2.22472.11 209,632 10/11/2022
7.0.0-rc.1.22426.7 209,877 9/14/2022
7.0.0-preview.7.22376.2 92,122 8/9/2022
7.0.0-preview.6.22329.4 71,790 7/12/2022
7.0.0-preview.5.22302.2 62,053 6/14/2022
7.0.0-preview.4.22229.2 76,214 5/10/2022
7.0.0-preview.3.22175.1 76,382 4/13/2022
7.0.0-preview.2.22153.1 84,302 3/14/2022
7.0.0-preview.1.22076.6 55,441 2/17/2022
6.0.36 5,346 11/12/2024
6.0.35 189,203 10/8/2024
6.0.33 690,959 8/13/2024
6.0.32 476,771 7/9/2024
6.0.31 734,100 5/28/2024
6.0.30 368,981 5/14/2024
6.0.29 1,833,916 4/9/2024
6.0.28 1,122,926 3/12/2024
6.0.27 1,454,933 2/13/2024
6.0.26 2,185,213 1/9/2024
6.0.25 2,992,044 11/14/2023
6.0.24 1,562,358 10/24/2023
6.0.23 1,094,562 10/10/2023
6.0.22 2,926,573 9/12/2023
6.0.21 3,121,712 8/8/2023
6.0.20 2,532,404 7/11/2023
6.0.19 2,076,740 6/22/2023
6.0.18 1,144,170 6/13/2023
6.0.16 6,734,790 4/11/2023
6.0.15 3,776,426 3/14/2023
6.0.14 4,756,589 2/14/2023
6.0.13 6,390,690 1/10/2023
6.0.12 9,752,070 12/13/2022
6.0.11 9,137,505 11/7/2022
6.0.10 16,236,943 10/11/2022
6.0.9 14,290,398 9/13/2022
6.0.8 16,998,798 8/9/2022
6.0.7 45,766,367 7/12/2022
6.0.6 13,718,997 6/14/2022
6.0.5 20,952,141 5/10/2022
6.0.4 16,899,537 4/11/2022
6.0.3 22,376,683 3/8/2022
6.0.2 18,695,520 2/8/2022
6.0.1 30,564,372 12/14/2021
6.0.0 59,714,994 11/8/2021
6.0.0-rc.2.21480.5 313,776 10/12/2021
6.0.0-rc.1.21452.10 233,045 9/14/2021
6.0.0-preview.7.21378.4 92,484 8/10/2021
6.0.0-preview.6.21352.1 42,998 7/14/2021
6.0.0-preview.5.21301.9 182,253 6/15/2021
6.0.0-preview.4.21253.1 71,259 5/24/2021
6.0.0-preview.3.21201.2 93,613 4/8/2021
6.0.0-preview.2.21154.2 72,783 3/11/2021
6.0.0-preview.1.21102.2 93,228 2/12/2021
5.0.17 6,931,578 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,432,100 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,198,140 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,289,465 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,256,101 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,666,930 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,132,937 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 12,886,218 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 9,974,251 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,191,480 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 13,963,159 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 7,974,111 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,058,444 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,077,849 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,919,080 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,282,837 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,406,305 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 25,341,233 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 374,237 10/13/2020
5.0.0-rc.1.20451.13 316,784 9/14/2020
5.0.0-preview.8.20407.4 199,668 8/25/2020
5.0.0-preview.7.20365.15 112,961 7/21/2020
5.0.0-preview.6.20312.4 63,084 6/25/2020
5.0.0-preview.5.20278.2 47,958 6/10/2020
5.0.0-preview.4.20220.10 72,940 5/18/2020
5.0.0-preview.3.20181.2 93,195 4/23/2020
5.0.0-preview.2.20159.4 60,766 4/2/2020
5.0.0-preview.2.20120.8 45,651 3/16/2020
3.1.32 4,161,344 12/13/2022
3.1.31 856,573 11/8/2022
3.1.30 658,208 10/11/2022
3.1.29 1,067,042 9/13/2022
3.1.28 774,450 8/9/2022
3.1.27 698,406 7/12/2022
3.1.26 594,891 6/14/2022
3.1.25 1,025,534 5/10/2022
3.1.24 629,618 4/11/2022
3.1.23 1,014,557 3/8/2022
3.1.22 3,153,071 12/14/2021
3.1.21 2,499,902 11/7/2021
3.1.20 1,445,010 10/11/2021
3.1.19 2,389,941 9/14/2021
3.1.18 5,060,538 8/10/2021
3.1.17 1,821,434 7/13/2021
3.1.16 2,310,822 6/8/2021
3.1.15 2,688,339 5/11/2021
3.1.14 3,036,468 4/6/2021
3.1.13 4,445,882 3/9/2021
3.1.12 2,933,193 2/9/2021
3.1.11 5,305,518 1/12/2021
3.1.10 8,215,981 11/9/2020
3.1.9 11,790,650 10/13/2020
3.1.8 17,460,720 9/8/2020
3.1.7 9,785,300 8/11/2020
3.1.6 10,579,215 7/14/2020
3.1.5 12,509,434 6/9/2020
3.1.4 17,557,690 5/12/2020
3.1.3 27,266,846 3/24/2020
3.1.2 11,696,970 2/19/2020
3.1.1 19,565,503 1/14/2020
3.1.0 33,126,871 12/3/2019
3.1.0-preview3.19554.8 163,790 11/13/2019
3.1.0-preview2.19525.5 32,263 11/1/2019
3.1.0-preview1.19506.2 738,400 10/15/2019
3.0.3 182,182 2/19/2020
3.0.2 79,012 1/14/2020
3.0.1 1,380,157 11/18/2019
3.0.0 18,529,884 9/23/2019
3.0.0-rc1.19456.14 46,256 9/16/2019
3.0.0-preview9.19423.6 1,355,863 9/4/2019
3.0.0-preview8.19405.11 411,814 8/13/2019
3.0.0-preview7.19362.6 89,775 7/23/2019
3.0.0-preview6.19304.10 166,184 6/12/2019
3.0.0-preview5.19227.1 670,180 5/6/2019
3.0.0-preview4.19216.3 22,687 4/18/2019
3.0.0-preview3.19153.1 201,212 3/6/2019
3.0.0-preview.19074.3 30,758 1/29/2019
3.0.0-preview.18572.1 47,791 12/3/2018
2.2.6 30,979,038 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,242,130 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,276,961 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,342,322 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,799,280 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 20,888,183 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 183,959 10/17/2018
2.2.0-preview2-35157 144,911 9/12/2018
2.2.0-preview1-35029 80,827 8/22/2018
2.1.14 3,816,928 11/18/2019
2.1.11 3,665,071 5/14/2019
2.1.8 3,632,538 2/12/2019
2.1.4 15,332,421 10/1/2018
2.1.3 4,851,143 9/11/2018
2.1.2 8,021,682 8/21/2018
2.1.1 15,342,491 6/18/2018
2.1.0 12,995,919 5/29/2018
2.1.0-rc1-final 221,834 5/6/2018
2.1.0-preview2-final 203,078 4/10/2018
2.1.0-preview1-final 314,853 2/26/2018
2.0.3 5,222,825 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,533,028 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,244,750 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,354,837 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,139 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,090,053 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,532,531 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,231,656 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 217,717 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 305,453 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,836,446 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,048,632 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,568,608 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,172 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 52,975 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 42,047 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 56,747 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 606,918 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 77,775 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 710,049 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,496,703 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 134,529 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.