Microsoft.EntityFrameworkCore 8.0.3

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

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

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.3K)

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

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.2.24128.4 4,020 3/12/2024
9.0.0-preview.1.24081.2 33,631 2/13/2024
8.0.3 197,471 3/12/2024
8.0.2 2,036,817 2/13/2024
8.0.1 3,536,180 1/9/2024
8.0.0 6,278,665 11/14/2023
8.0.0-rc.2.23480.1 307,627 10/10/2023
8.0.0-rc.1.23419.6 112,073 9/12/2023
8.0.0-preview.7.23375.4 64,350 8/8/2023
8.0.0-preview.6.23329.4 102,526 7/11/2023
8.0.0-preview.5.23280.1 101,417 6/13/2023
8.0.0-preview.4.23259.3 96,830 5/16/2023
8.0.0-preview.3.23174.2 130,303 4/11/2023
8.0.0-preview.2.23128.3 139,439 3/14/2023
8.0.0-preview.1.23111.4 119,714 2/21/2023
7.0.17 44,745 3/12/2024
7.0.16 517,313 2/13/2024
7.0.15 1,214,027 1/9/2024
7.0.14 2,994,887 11/14/2023
7.0.13 3,491,453 10/24/2023
7.0.12 2,744,042 10/10/2023
7.0.11 7,239,008 9/12/2023
7.0.10 6,302,765 8/8/2023
7.0.9 5,542,680 7/11/2023
7.0.8 3,827,069 6/22/2023
7.0.7 2,749,452 6/13/2023
7.0.5 17,908,933 4/11/2023
7.0.4 7,333,609 3/14/2023
7.0.3 10,147,068 2/14/2023
7.0.2 12,993,754 1/10/2023
7.0.1 7,644,226 12/13/2022
7.0.0 17,130,691 11/7/2022
7.0.0-rc.2.22472.11 187,161 10/11/2022
7.0.0-rc.1.22426.7 195,188 9/14/2022
7.0.0-preview.7.22376.2 82,640 8/9/2022
7.0.0-preview.6.22329.4 61,191 7/12/2022
7.0.0-preview.5.22302.2 56,263 6/14/2022
7.0.0-preview.4.22229.2 69,729 5/10/2022
7.0.0-preview.3.22175.1 70,587 4/13/2022
7.0.0-preview.2.22153.1 81,397 3/14/2022
7.0.0-preview.1.22076.6 49,366 2/17/2022
6.0.28 35,710 3/12/2024
6.0.27 326,981 2/13/2024
6.0.26 832,185 1/9/2024
6.0.25 1,429,559 11/14/2023
6.0.24 911,691 10/24/2023
6.0.23 705,165 10/10/2023
6.0.22 1,697,731 9/12/2023
6.0.21 1,961,245 8/8/2023
6.0.20 1,746,909 7/11/2023
6.0.19 1,381,440 6/22/2023
6.0.18 843,777 6/13/2023
6.0.16 4,972,656 4/11/2023
6.0.15 2,971,126 3/14/2023
6.0.14 3,637,302 2/14/2023
6.0.13 5,082,629 1/10/2023
6.0.12 7,274,601 12/13/2022
6.0.11 7,494,953 11/7/2022
6.0.10 13,352,259 10/11/2022
6.0.9 12,035,701 9/13/2022
6.0.8 14,235,185 8/9/2022
6.0.7 36,870,350 7/12/2022
6.0.6 11,781,584 6/14/2022
6.0.5 17,976,036 5/10/2022
6.0.4 14,315,767 4/11/2022
6.0.3 18,779,162 3/8/2022
6.0.2 16,391,769 2/8/2022
6.0.1 26,401,461 12/14/2021
6.0.0 46,221,943 11/8/2021
6.0.0-rc.2.21480.5 297,956 10/12/2021
6.0.0-rc.1.21452.10 179,701 9/14/2021
6.0.0-preview.7.21378.4 86,120 8/10/2021
6.0.0-preview.6.21352.1 41,041 7/14/2021
6.0.0-preview.5.21301.9 168,593 6/15/2021
6.0.0-preview.4.21253.1 70,083 5/24/2021
6.0.0-preview.3.21201.2 89,326 4/8/2021
6.0.0-preview.2.21154.2 63,242 3/11/2021
6.0.0-preview.1.21102.2 89,694 2/12/2021
5.0.17 5,538,422 5/10/2022
5.0.16 1,277,850 4/11/2022
5.0.15 1,949,919 3/8/2022
5.0.14 2,153,591 2/8/2022
5.0.13 3,902,068 12/14/2021
5.0.12 4,331,201 11/7/2021
5.0.11 7,516,801 10/12/2021
5.0.10 11,931,912 9/14/2021
5.0.9 9,342,806 8/10/2021
5.0.8 8,460,487 7/13/2021
5.0.7 12,990,999 6/8/2021
5.0.6 7,489,615 5/11/2021
5.0.5 10,330,947 4/6/2021
5.0.4 7,669,746 3/9/2021
5.0.3 7,613,053 2/9/2021
5.0.2 9,888,431 1/12/2021
5.0.1 14,431,645 12/8/2020
5.0.0 22,789,181 11/9/2020
5.0.0-rc.2.20475.6 364,677 10/13/2020
5.0.0-rc.1.20451.13 312,493 9/14/2020
5.0.0-preview.8.20407.4 194,072 8/25/2020
5.0.0-preview.7.20365.15 110,419 7/21/2020
5.0.0-preview.6.20312.4 61,425 6/25/2020
5.0.0-preview.5.20278.2 45,503 6/10/2020
5.0.0-preview.4.20220.10 70,447 5/18/2020
5.0.0-preview.3.20181.2 90,469 4/23/2020
5.0.0-preview.2.20159.4 59,025 4/2/2020
5.0.0-preview.2.20120.8 44,803 3/16/2020
3.1.32 2,365,884 12/13/2022
3.1.31 539,390 11/8/2022
3.1.30 521,688 10/11/2022
3.1.29 745,086 9/13/2022
3.1.28 605,279 8/9/2022
3.1.27 583,413 7/12/2022
3.1.26 505,587 6/14/2022
3.1.25 898,212 5/10/2022
3.1.24 567,908 4/11/2022
3.1.23 905,993 3/8/2022
3.1.22 2,711,933 12/14/2021
3.1.21 2,195,463 11/7/2021
3.1.20 1,232,951 10/11/2021
3.1.19 2,125,606 9/14/2021
3.1.18 4,650,415 8/10/2021
3.1.17 1,681,586 7/13/2021
3.1.16 2,092,330 6/8/2021
3.1.15 2,443,501 5/11/2021
3.1.14 2,864,159 4/6/2021
3.1.13 4,121,311 3/9/2021
3.1.12 2,765,405 2/9/2021
3.1.11 4,994,083 1/12/2021
3.1.10 7,861,862 11/9/2020
3.1.9 11,264,155 10/13/2020
3.1.8 16,780,097 9/8/2020
3.1.7 9,134,145 8/11/2020
3.1.6 10,071,398 7/14/2020
3.1.5 11,926,732 6/9/2020
3.1.4 16,695,423 5/12/2020
3.1.3 25,654,484 3/24/2020
3.1.2 11,166,818 2/19/2020
3.1.1 18,284,146 1/14/2020
3.1.0 30,549,444 12/3/2019
3.1.0-preview3.19554.8 158,477 11/13/2019
3.1.0-preview2.19525.5 31,630 11/1/2019
3.1.0-preview1.19506.2 693,238 10/15/2019
3.0.3 170,710 2/19/2020
3.0.2 75,338 1/14/2020
3.0.1 1,327,369 11/18/2019
3.0.0 17,377,683 9/23/2019
3.0.0-rc1.19456.14 45,482 9/16/2019
3.0.0-preview9.19423.6 1,301,288 9/4/2019
3.0.0-preview8.19405.11 391,024 8/13/2019
3.0.0-preview7.19362.6 86,802 7/23/2019
3.0.0-preview6.19304.10 158,179 6/12/2019
3.0.0-preview5.19227.1 638,465 5/6/2019
3.0.0-preview4.19216.3 22,029 4/18/2019
3.0.0-preview3.19153.1 194,163 3/6/2019
3.0.0-preview.19074.3 30,039 1/29/2019
3.0.0-preview.18572.1 46,303 12/3/2018
2.2.6 29,505,163 7/9/2019
2.2.4 18,566,596 4/9/2019
2.2.3 5,142,091 3/11/2019
2.2.2 6,137,392 2/12/2019
2.2.1 6,601,659 1/8/2019
2.2.0 19,322,226 12/3/2018
2.2.0-preview3-35497 180,384 10/17/2018
2.2.0-preview2-35157 138,600 9/12/2018
2.2.0-preview1-35029 78,191 8/22/2018
2.1.14 3,587,739 11/18/2019
2.1.11 3,591,451 5/14/2019
2.1.8 3,437,915 2/12/2019
2.1.4 14,919,683 10/1/2018
2.1.3 4,753,850 9/11/2018
2.1.2 7,863,886 8/21/2018
2.1.1 13,761,780 6/18/2018
2.1.0 12,341,046 5/29/2018
2.1.0-rc1-final 210,064 5/6/2018
2.1.0-preview2-final 188,949 4/10/2018
2.1.0-preview1-final 302,607 2/26/2018
2.0.3 5,012,980 5/7/2018
2.0.2 6,300,130 3/13/2018
2.0.1 11,796,111 11/14/2017
2.0.0 24,004,705 8/11/2017
2.0.0-preview2-final 89,534 6/28/2017
2.0.0-preview1-final 1,055,212 5/10/2017
1.1.6 4,855,366 7/10/2018
1.1.5 1,181,320 12/12/2017
1.1.4 208,768 11/14/2017
1.1.3 295,849 9/20/2017
1.1.2 4,312,221 5/9/2017
1.1.1 2,776,098 3/6/2017
1.1.0 5,743,886 11/16/2016
1.1.0-preview1-final 43,300 10/24/2016
1.0.6 48,415 11/14/2017
1.0.5 38,026 9/20/2017
1.0.4 52,486 5/9/2017
1.0.3 554,786 3/6/2017
1.0.2 75,386 12/12/2016
1.0.1 621,767 9/13/2016
1.0.0 1,242,501 6/27/2016
1.0.0-rc2-final 127,541 5/16/2016