Microsoft.EntityFrameworkCore 8.0.13

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

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

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

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.2 405,381 2/11/2025
9.0.1 1,860,753 1/14/2025
9.0.0 6,249,622 11/12/2024
9.0.0-rc.2.24474.1 167,293 10/8/2024
9.0.0-rc.1.24451.1 112,877 9/10/2024
9.0.0-preview.7.24405.3 68,317 8/13/2024
9.0.0-preview.6.24327.4 81,495 7/9/2024
9.0.0-preview.5.24306.3 37,915 6/11/2024
9.0.0-preview.4.24267.1 54,056 5/21/2024
9.0.0-preview.3.24172.4 164,569 4/11/2024
9.0.0-preview.2.24128.4 61,008 3/12/2024
9.0.0-preview.1.24081.2 90,843 2/13/2024
8.0.13 234,082 2/11/2025
8.0.12 1,103,337 1/14/2025
8.0.11 6,743,947 11/12/2024
8.0.10 12,381,364 10/8/2024
8.0.8 17,769,685 8/13/2024
8.0.7 11,774,290 7/9/2024
8.0.6 13,997,635 5/28/2024
8.0.5 6,135,248 5/14/2024
8.0.4 22,040,198 4/9/2024
8.0.3 9,647,499 3/12/2024
8.0.2 18,100,011 2/13/2024
8.0.1 12,274,251 1/9/2024
8.0.0 33,749,160 11/14/2023
8.0.0-rc.2.23480.1 488,997 10/10/2023
8.0.0-rc.1.23419.6 139,902 9/12/2023
8.0.0-preview.7.23375.4 106,982 8/8/2023
8.0.0-preview.6.23329.4 179,385 7/11/2023
8.0.0-preview.5.23280.1 136,445 6/13/2023
8.0.0-preview.4.23259.3 129,163 5/16/2023
8.0.0-preview.3.23174.2 205,063 4/11/2023
8.0.0-preview.2.23128.3 192,042 3/14/2023
8.0.0-preview.1.23111.4 136,936 2/21/2023
7.0.20 2,425,458 5/28/2024
7.0.19 449,840 5/14/2024
7.0.18 1,900,669 4/9/2024
7.0.17 1,477,328 3/12/2024
7.0.16 1,892,634 2/13/2024
7.0.15 2,964,303 1/9/2024
7.0.14 5,635,507 11/14/2023
7.0.13 6,152,170 10/24/2023
7.0.12 4,178,525 10/10/2023
7.0.11 12,557,271 9/12/2023
7.0.10 9,191,669 8/8/2023
7.0.9 8,468,178 7/11/2023
7.0.8 5,232,812 6/22/2023
7.0.7 3,633,576 6/13/2023
7.0.5 24,422,024 4/11/2023
7.0.4 9,110,191 3/14/2023
7.0.3 13,217,688 2/14/2023
7.0.2 17,876,311 1/10/2023
7.0.1 9,626,664 12/13/2022
7.0.0 27,376,696 11/7/2022
7.0.0-rc.2.22472.11 214,579 10/11/2022
7.0.0-rc.1.22426.7 212,393 9/14/2022
7.0.0-preview.7.22376.2 95,117 8/9/2022
7.0.0-preview.6.22329.4 74,875 7/12/2022
7.0.0-preview.5.22302.2 63,892 6/14/2022
7.0.0-preview.4.22229.2 80,744 5/10/2022
7.0.0-preview.3.22175.1 77,668 4/13/2022
7.0.0-preview.2.22153.1 85,525 3/14/2022
7.0.0-preview.1.22076.6 57,248 2/17/2022
6.0.36 462,348 11/12/2024
6.0.35 453,184 10/8/2024
6.0.33 1,235,150 8/13/2024
6.0.32 634,564 7/9/2024
6.0.31 908,222 5/28/2024
6.0.30 456,091 5/14/2024
6.0.29 2,286,162 4/9/2024
6.0.28 1,349,051 3/12/2024
6.0.27 1,669,180 2/13/2024
6.0.26 2,426,121 1/9/2024
6.0.25 3,325,390 11/14/2023
6.0.24 1,720,924 10/24/2023
6.0.23 1,172,081 10/10/2023
6.0.22 3,171,869 9/12/2023
6.0.21 3,363,560 8/8/2023
6.0.20 2,707,301 7/11/2023
6.0.19 2,261,503 6/22/2023
6.0.18 1,217,649 6/13/2023
6.0.16 7,135,165 4/11/2023
6.0.15 3,987,266 3/14/2023
6.0.14 5,037,451 2/14/2023
6.0.13 6,664,045 1/10/2023
6.0.12 10,338,617 12/13/2022
6.0.11 9,539,332 11/7/2022
6.0.10 16,895,787 10/11/2022
6.0.9 14,804,114 9/13/2022
6.0.8 17,726,826 8/9/2022
6.0.7 47,819,777 7/12/2022
6.0.6 14,254,952 6/14/2022
6.0.5 21,762,423 5/10/2022
6.0.4 17,432,422 4/11/2022
6.0.3 23,645,397 3/8/2022
6.0.2 19,231,682 2/8/2022
6.0.1 31,681,025 12/14/2021
6.0.0 64,268,874 11/8/2021
6.0.0-rc.2.21480.5 320,253 10/12/2021
6.0.0-rc.1.21452.10 248,512 9/14/2021
6.0.0-preview.7.21378.4 95,559 8/10/2021
6.0.0-preview.6.21352.1 43,391 7/14/2021
6.0.0-preview.5.21301.9 184,866 6/15/2021
6.0.0-preview.4.21253.1 71,730 5/24/2021
6.0.0-preview.3.21201.2 94,890 4/8/2021
6.0.0-preview.2.21154.2 72,914 3/11/2021
6.0.0-preview.1.21102.2 94,795 2/12/2021
5.0.17 7,335,308 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,467,416 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,292,597 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,323,919 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,363,848 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,760,336 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 8,283,810 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 13,166,855 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 10,158,226 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 9,432,318 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 14,197,206 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 8,098,115 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 11,271,643 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 8,200,207 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 8,008,807 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,441,114 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,687,504 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 26,108,866 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 377,821 10/13/2020
5.0.0-rc.1.20451.13 318,118 9/14/2020
5.0.0-preview.8.20407.4 201,592 8/25/2020
5.0.0-preview.7.20365.15 113,893 7/21/2020
5.0.0-preview.6.20312.4 63,624 6/25/2020
5.0.0-preview.5.20278.2 48,540 6/10/2020
5.0.0-preview.4.20220.10 73,406 5/18/2020
5.0.0-preview.3.20181.2 94,034 4/23/2020
5.0.0-preview.2.20159.4 61,261 4/2/2020
5.0.0-preview.2.20120.8 45,899 3/16/2020
3.1.32 4,963,233 12/13/2022
3.1.31 1,004,369 11/8/2022
3.1.30 703,912 10/11/2022
3.1.29 1,192,950 9/13/2022
3.1.28 815,210 8/9/2022
3.1.27 722,521 7/12/2022
3.1.26 629,779 6/14/2022
3.1.25 1,065,789 5/10/2022
3.1.24 646,209 4/11/2022
3.1.23 1,046,215 3/8/2022
3.1.22 3,328,347 12/14/2021
3.1.21 2,578,828 11/7/2021
3.1.20 1,520,703 10/11/2021
3.1.19 2,443,082 9/14/2021
3.1.18 5,198,879 8/10/2021
3.1.17 1,861,275 7/13/2021
3.1.16 2,356,022 6/8/2021
3.1.15 2,789,373 5/11/2021
3.1.14 3,084,980 4/6/2021
3.1.13 4,544,715 3/9/2021
3.1.12 2,984,933 2/9/2021
3.1.11 5,398,991 1/12/2021
3.1.10 8,304,455 11/9/2020
3.1.9 11,940,866 10/13/2020
3.1.8 17,629,780 9/8/2020
3.1.7 9,955,427 8/11/2020
3.1.6 10,711,594 7/14/2020
3.1.5 12,734,537 6/9/2020
3.1.4 17,809,029 5/12/2020
3.1.3 27,711,844 3/24/2020
3.1.2 11,839,215 2/19/2020
3.1.1 19,845,528 1/14/2020
3.1.0 33,850,692 12/3/2019
3.1.0-preview3.19554.8 164,181 11/13/2019
3.1.0-preview2.19525.5 32,556 11/1/2019
3.1.0-preview1.19506.2 751,971 10/15/2019
3.0.3 186,366 2/19/2020
3.0.2 79,737 1/14/2020
3.0.1 1,394,827 11/18/2019
3.0.0 18,835,519 9/23/2019
3.0.0-rc1.19456.14 46,512 9/16/2019
3.0.0-preview9.19423.6 1,371,773 9/4/2019
3.0.0-preview8.19405.11 412,387 8/13/2019
3.0.0-preview7.19362.6 90,167 7/23/2019
3.0.0-preview6.19304.10 167,249 6/12/2019
3.0.0-preview5.19227.1 671,027 5/6/2019
3.0.0-preview4.19216.3 22,811 4/18/2019
3.0.0-preview3.19153.1 201,952 3/6/2019
3.0.0-preview.19074.3 31,149 1/29/2019
3.0.0-preview.18572.1 48,274 12/3/2018
2.3.0 3,154 1/14/2025
2.2.6 31,435,397 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,420,089 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,311,203 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,396,528 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,851,989 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 21,355,290 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 184,451 10/17/2018
2.2.0-preview2-35157 147,197 9/12/2018
2.2.0-preview1-35029 81,156 8/22/2018
2.1.14 3,908,767 11/18/2019
2.1.11 3,685,211 5/14/2019
2.1.8 3,716,126 2/12/2019
2.1.4 15,454,891 10/1/2018
2.1.3 4,873,916 9/11/2018
2.1.2 8,071,889 8/21/2018
2.1.1 15,986,240 6/18/2018
2.1.0 13,153,479 5/29/2018
2.1.0-rc1-final 223,276 5/6/2018
2.1.0-preview2-final 204,382 4/10/2018
2.1.0-preview1-final 315,987 2/26/2018
2.0.3 5,288,712 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,615,746 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,398,372 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 26,905,218 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 95,675 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,107,007 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,711,011 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,241,651 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 220,973 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 307,163 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,929,638 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 3,120,422 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,965,109 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 46,352 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 54,118 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 42,630 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 57,394 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 632,816 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 78,094 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 762,420 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,634,713 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 137,986 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.