Microsoft.EntityFrameworkCore 8.0.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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 8.0.4
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 8.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="8.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.EntityFrameworkCore --version 8.0.4
#r "nuget: Microsoft.EntityFrameworkCore, 8.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.
// Install Microsoft.EntityFrameworkCore as a Cake Addin
#addin nuget:?package=Microsoft.EntityFrameworkCore&version=8.0.4

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

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 (7.5K)

Showing the top 5 NuGet packages that depend on Microsoft.EntityFrameworkCore:

Package Downloads
Microsoft.EntityFrameworkCore.Relational The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Shared Entity Framework Core components for relational database providers.

Microsoft.EntityFrameworkCore.InMemory The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

In-memory database provider for Entity Framework Core (to be used for testing purposes).

Npgsql.EntityFrameworkCore.PostgreSQL The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

PostgreSQL/Npgsql provider for Entity Framework Core.

Microsoft.EntityFrameworkCore.Proxies The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Lazy loading proxies for Entity Framework Core.

Microsoft.AspNetCore.App The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

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

Repository Stars
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
dotnet/AspNetCore.Docs
Documentation 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 and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
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-preview.3.24172.4 5,234 4/11/2024
9.0.0-preview.2.24128.4 24,204 3/12/2024
9.0.0-preview.1.24081.2 47,100 2/13/2024
8.0.4 459,503 4/9/2024
8.0.3 2,243,229 3/12/2024
8.0.2 3,911,292 2/13/2024
8.0.1 4,693,810 1/9/2024
8.0.0 8,405,099 11/14/2023
8.0.0-rc.2.23480.1 333,881 10/10/2023
8.0.0-rc.1.23419.6 115,882 9/12/2023
8.0.0-preview.7.23375.4 68,254 8/8/2023
8.0.0-preview.6.23329.4 109,886 7/11/2023
8.0.0-preview.5.23280.1 104,689 6/13/2023
8.0.0-preview.4.23259.3 100,790 5/16/2023
8.0.0-preview.3.23174.2 138,081 4/11/2023
8.0.0-preview.2.23128.3 152,035 3/14/2023
8.0.0-preview.1.23111.4 123,554 2/21/2023
7.0.18 57,550 4/9/2024
7.0.17 388,110 3/12/2024
7.0.16 873,295 2/13/2024
7.0.15 1,548,126 1/9/2024
7.0.14 3,430,428 11/14/2023
7.0.13 3,899,564 10/24/2023
7.0.12 3,070,228 10/10/2023
7.0.11 8,229,161 9/12/2023
7.0.10 6,762,346 8/8/2023
7.0.9 5,945,298 7/11/2023
7.0.8 4,030,246 6/22/2023
7.0.7 2,892,348 6/13/2023
7.0.5 18,854,257 4/11/2023
7.0.4 7,593,930 3/14/2023
7.0.3 10,577,717 2/14/2023
7.0.2 13,766,939 1/10/2023
7.0.1 7,915,486 12/13/2022
7.0.0 18,311,658 11/7/2022
7.0.0-rc.2.22472.11 190,379 10/11/2022
7.0.0-rc.1.22426.7 199,268 9/14/2022
7.0.0-preview.7.22376.2 84,165 8/9/2022
7.0.0-preview.6.22329.4 62,397 7/12/2022
7.0.0-preview.5.22302.2 57,176 6/14/2022
7.0.0-preview.4.22229.2 70,306 5/10/2022
7.0.0-preview.3.22175.1 71,689 4/13/2022
7.0.0-preview.2.22153.1 82,133 3/14/2022
7.0.0-preview.1.22076.6 50,105 2/17/2022
6.0.29 60,754 4/9/2024
6.0.28 300,712 3/12/2024
6.0.27 558,963 2/13/2024
6.0.26 1,114,216 1/9/2024
6.0.25 1,718,515 11/14/2023
6.0.24 1,043,002 10/24/2023
6.0.23 781,477 10/10/2023
6.0.22 1,937,360 9/12/2023
6.0.21 2,154,426 8/8/2023
6.0.20 1,887,571 7/11/2023
6.0.19 1,492,834 6/22/2023
6.0.18 899,397 6/13/2023
6.0.16 5,268,666 4/11/2023
6.0.15 3,117,014 3/14/2023
6.0.14 3,829,015 2/14/2023
6.0.13 5,305,229 1/10/2023
6.0.12 7,720,173 12/13/2022
6.0.11 7,796,999 11/7/2022
6.0.10 13,835,839 10/11/2022
6.0.9 12,437,090 9/13/2022
6.0.8 14,661,277 8/9/2022
6.0.7 38,358,336 7/12/2022
6.0.6 12,077,422 6/14/2022
6.0.5 18,428,450 5/10/2022
6.0.4 14,741,180 4/11/2022
6.0.3 19,346,585 3/8/2022
6.0.2 16,795,389 2/8/2022
6.0.1 27,074,625 12/14/2021
6.0.0 48,257,849 11/8/2021
6.0.0-rc.2.21480.5 300,234 10/12/2021
6.0.0-rc.1.21452.10 184,984 9/14/2021
6.0.0-preview.7.21378.4 86,862 8/10/2021
6.0.0-preview.6.21352.1 41,417 7/14/2021
6.0.0-preview.5.21301.9 170,967 6/15/2021
6.0.0-preview.4.21253.1 70,278 5/24/2021
6.0.0-preview.3.21201.2 89,933 4/8/2021
6.0.0-preview.2.21154.2 64,999 3/11/2021
6.0.0-preview.1.21102.2 90,337 2/12/2021
5.0.17 5,759,562 5/10/2022
5.0.16 1,304,080 4/11/2022
5.0.15 1,991,360 3/8/2022
5.0.14 2,177,425 2/8/2022
5.0.13 3,962,834 12/14/2021
5.0.12 4,384,400 11/7/2021
5.0.11 7,624,908 10/12/2021
5.0.10 12,080,109 9/14/2021
5.0.9 9,444,242 8/10/2021
5.0.8 8,568,762 7/13/2021
5.0.7 13,164,947 6/8/2021
5.0.6 7,565,721 5/11/2021
5.0.5 10,456,332 4/6/2021
5.0.4 7,736,700 3/9/2021
5.0.3 7,663,069 2/9/2021
5.0.2 9,957,051 1/12/2021
5.0.1 14,597,326 12/8/2020
5.0.0 23,288,953 11/9/2020
5.0.0-rc.2.20475.6 366,357 10/13/2020
5.0.0-rc.1.20451.13 313,254 9/14/2020
5.0.0-preview.8.20407.4 195,050 8/25/2020
5.0.0-preview.7.20365.15 110,892 7/21/2020
5.0.0-preview.6.20312.4 61,780 6/25/2020
5.0.0-preview.5.20278.2 46,101 6/10/2020
5.0.0-preview.4.20220.10 71,014 5/18/2020
5.0.0-preview.3.20181.2 91,005 4/23/2020
5.0.0-preview.2.20159.4 59,343 4/2/2020
5.0.0-preview.2.20120.8 44,895 3/16/2020
3.1.32 2,591,315 12/13/2022
3.1.31 575,540 11/8/2022
3.1.30 540,469 10/11/2022
3.1.29 788,293 9/13/2022
3.1.28 627,467 8/9/2022
3.1.27 602,065 7/12/2022
3.1.26 521,265 6/14/2022
3.1.25 918,919 5/10/2022
3.1.24 577,684 4/11/2022
3.1.23 924,613 3/8/2022
3.1.22 2,777,807 12/14/2021
3.1.21 2,243,074 11/7/2021
3.1.20 1,266,888 10/11/2021
3.1.19 2,187,554 9/14/2021
3.1.18 4,718,804 8/10/2021
3.1.17 1,702,941 7/13/2021
3.1.16 2,124,133 6/8/2021
3.1.15 2,481,105 5/11/2021
3.1.14 2,891,114 4/6/2021
3.1.13 4,174,403 3/9/2021
3.1.12 2,794,428 2/9/2021
3.1.11 5,044,074 1/12/2021
3.1.10 7,930,531 11/9/2020
3.1.9 11,353,279 10/13/2020
3.1.8 16,906,770 9/8/2020
3.1.7 9,238,032 8/11/2020
3.1.6 10,151,515 7/14/2020
3.1.5 12,017,327 6/9/2020
3.1.4 16,825,073 5/12/2020
3.1.3 25,914,989 3/24/2020
3.1.2 11,249,993 2/19/2020
3.1.1 18,730,368 1/14/2020
3.1.0 31,031,578 12/3/2019
3.1.0-preview3.19554.8 159,520 11/13/2019
3.1.0-preview2.19525.5 31,778 11/1/2019
3.1.0-preview1.19506.2 699,793 10/15/2019
3.0.3 173,379 2/19/2020
3.0.2 77,521 1/14/2020
3.0.1 1,336,080 11/18/2019
3.0.0 17,691,193 9/23/2019
3.0.0-rc1.19456.14 45,596 9/16/2019
3.0.0-preview9.19423.6 1,310,011 9/4/2019
3.0.0-preview8.19405.11 396,129 8/13/2019
3.0.0-preview7.19362.6 87,404 7/23/2019
3.0.0-preview6.19304.10 159,628 6/12/2019
3.0.0-preview5.19227.1 647,018 5/6/2019
3.0.0-preview4.19216.3 22,195 4/18/2019
3.0.0-preview3.19153.1 195,860 3/6/2019
3.0.0-preview.19074.3 30,151 1/29/2019
3.0.0-preview.18572.1 46,530 12/3/2018
2.2.6 29,751,921 7/9/2019
2.2.4 18,701,013 4/9/2019
2.2.3 5,172,257 3/11/2019
2.2.2 6,174,616 2/12/2019
2.2.1 6,636,428 1/8/2019
2.2.0 19,575,454 12/3/2018
2.2.0-preview3-35497 182,464 10/17/2018
2.2.0-preview2-35157 141,051 9/12/2018
2.2.0-preview1-35029 80,173 8/22/2018
2.1.14 3,619,332 11/18/2019
2.1.11 3,604,417 5/14/2019
2.1.8 3,464,742 2/12/2019
2.1.4 14,996,914 10/1/2018
2.1.3 4,773,337 9/11/2018
2.1.2 7,892,696 8/21/2018
2.1.1 13,990,377 6/18/2018
2.1.0 12,510,095 5/29/2018
2.1.0-rc1-final 214,511 5/6/2018
2.1.0-preview2-final 195,262 4/10/2018
2.1.0-preview1-final 308,270 2/26/2018
2.0.3 5,048,146 5/7/2018
2.0.2 6,348,042 3/13/2018
2.0.1 11,880,838 11/14/2017
2.0.0 24,581,303 8/11/2017
2.0.0-preview2-final 93,025 6/28/2017
2.0.0-preview1-final 1,061,125 5/10/2017
1.1.6 4,954,783 7/10/2018
1.1.5 1,198,931 12/12/2017
1.1.4 211,880 11/14/2017
1.1.3 299,579 9/20/2017
1.1.2 4,427,419 5/9/2017
1.1.1 2,820,574 3/6/2017
1.1.0 5,862,231 11/16/2016
1.1.0-preview1-final 45,518 10/24/2016
1.0.6 50,951 11/14/2017
1.0.5 40,547 9/20/2017
1.0.4 55,262 5/9/2017
1.0.3 563,615 3/6/2017
1.0.2 77,160 12/12/2016
1.0.1 635,803 9/13/2016
1.0.0 1,276,257 6/27/2016
1.0.0-rc2-final 130,549 5/16/2016