Microsoft.EntityFrameworkCore
8.0.10
Prefix Reserved
See the version list below for details.
Requires NuGet 3.6 or higher.
dotnet add package Microsoft.EntityFrameworkCore --version 8.0.10
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 8.0.10
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
paket add Microsoft.EntityFrameworkCore --version 8.0.10
#r "nuget: Microsoft.EntityFrameworkCore, 8.0.10"
// Install Microsoft.EntityFrameworkCore as a Cake Addin #addin nuget:?package=Microsoft.EntityFrameworkCore&version=8.0.10 // Install Microsoft.EntityFrameworkCore as a Cake Tool #tool nuget:?package=Microsoft.EntityFrameworkCore&version=8.0.10
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
- Getting Started with Entity Framework Core.
- Follow the ASP.NET Core Tutorial to use EF Core in a web app.
- Releases and planning(roadmap)
- How to write an EF Core provider
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 | Versions 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. |
-
net8.0
- Microsoft.EntityFrameworkCore.Abstractions (>= 8.0.10)
- Microsoft.EntityFrameworkCore.Analyzers (>= 8.0.10)
- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- Microsoft.Extensions.Logging (>= 8.0.1)
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 (582)
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-rc.2.24474.1 | 60,124 | 10/8/2024 | |
9.0.0-rc.1.24451.1 | 69,393 | 9/10/2024 | |
9.0.0-preview.7.24405.3 | 37,832 | 8/13/2024 | |
9.0.0-preview.6.24327.4 | 59,140 | 7/9/2024 | |
9.0.0-preview.5.24306.3 | 31,833 | 6/11/2024 | |
9.0.0-preview.4.24267.1 | 42,499 | 5/21/2024 | |
9.0.0-preview.3.24172.4 | 150,092 | 4/11/2024 | |
9.0.0-preview.2.24128.4 | 51,586 | 3/12/2024 | |
9.0.0-preview.1.24081.2 | 71,103 | 2/13/2024 | |
8.0.10 | 3,091,800 | 10/8/2024 | |
8.0.8 | 10,200,025 | 8/13/2024 | |
8.0.7 | 8,006,658 | 7/9/2024 | |
8.0.6 | 10,313,864 | 5/28/2024 | |
8.0.5 | 4,611,993 | 5/14/2024 | |
8.0.4 | 16,005,404 | 4/9/2024 | |
8.0.3 | 7,718,540 | 3/12/2024 | |
8.0.2 | 13,456,063 | 2/13/2024 | |
8.0.1 | 9,964,809 | 1/9/2024 | |
8.0.0 | 24,340,894 | 11/14/2023 | |
8.0.0-rc.2.23480.1 | 446,160 | 10/10/2023 | |
8.0.0-rc.1.23419.6 | 132,257 | 9/12/2023 | |
8.0.0-preview.7.23375.4 | 94,380 | 8/8/2023 | |
8.0.0-preview.6.23329.4 | 154,308 | 7/11/2023 | |
8.0.0-preview.5.23280.1 | 125,458 | 6/13/2023 | |
8.0.0-preview.4.23259.3 | 121,223 | 5/16/2023 | |
8.0.0-preview.3.23174.2 | 183,525 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 187,436 | 3/14/2023 | |
8.0.0-preview.1.23111.4 | 133,819 | 2/21/2023 | |
7.0.20 | 1,489,905 | 5/28/2024 | |
7.0.19 | 363,147 | 5/14/2024 | |
7.0.18 | 1,475,893 | 4/9/2024 | |
7.0.17 | 1,290,062 | 3/12/2024 | |
7.0.16 | 1,693,061 | 2/13/2024 | |
7.0.15 | 2,644,858 | 1/9/2024 | |
7.0.14 | 5,123,003 | 11/14/2023 | |
7.0.13 | 5,524,358 | 10/24/2023 | |
7.0.12 | 3,898,811 | 10/10/2023 | |
7.0.11 | 11,561,031 | 9/12/2023 | |
7.0.10 | 8,621,434 | 8/8/2023 | |
7.0.9 | 7,786,429 | 7/11/2023 | |
7.0.8 | 4,957,016 | 6/22/2023 | |
7.0.7 | 3,454,115 | 6/13/2023 | |
7.0.5 | 23,009,539 | 4/11/2023 | |
7.0.4 | 8,745,625 | 3/14/2023 | |
7.0.3 | 12,539,833 | 2/14/2023 | |
7.0.2 | 16,754,588 | 1/10/2023 | |
7.0.1 | 9,179,340 | 12/13/2022 | |
7.0.0 | 24,542,665 | 11/7/2022 | |
7.0.0-rc.2.22472.11 | 209,100 | 10/11/2022 | |
7.0.0-rc.1.22426.7 | 209,647 | 9/14/2022 | |
7.0.0-preview.7.22376.2 | 91,891 | 8/9/2022 | |
7.0.0-preview.6.22329.4 | 71,514 | 7/12/2022 | |
7.0.0-preview.5.22302.2 | 61,891 | 6/14/2022 | |
7.0.0-preview.4.22229.2 | 75,994 | 5/10/2022 | |
7.0.0-preview.3.22175.1 | 76,141 | 4/13/2022 | |
7.0.0-preview.2.22153.1 | 84,224 | 3/14/2022 | |
7.0.0-preview.1.22076.6 | 55,187 | 2/17/2022 | |
6.0.35 | 134,624 | 10/8/2024 | |
6.0.33 | 628,847 | 8/13/2024 | |
6.0.32 | 455,953 | 7/9/2024 | |
6.0.31 | 707,719 | 5/28/2024 | |
6.0.30 | 357,363 | 5/14/2024 | |
6.0.29 | 1,775,812 | 4/9/2024 | |
6.0.28 | 1,095,390 | 3/12/2024 | |
6.0.27 | 1,428,988 | 2/13/2024 | |
6.0.26 | 2,156,330 | 1/9/2024 | |
6.0.25 | 2,951,581 | 11/14/2023 | |
6.0.24 | 1,539,786 | 10/24/2023 | |
6.0.23 | 1,085,064 | 10/10/2023 | |
6.0.22 | 2,897,918 | 9/12/2023 | |
6.0.21 | 3,088,767 | 8/8/2023 | |
6.0.20 | 2,512,891 | 7/11/2023 | |
6.0.19 | 2,047,603 | 6/22/2023 | |
6.0.18 | 1,135,007 | 6/13/2023 | |
6.0.16 | 6,683,690 | 4/11/2023 | |
6.0.15 | 3,747,369 | 3/14/2023 | |
6.0.14 | 4,723,605 | 2/14/2023 | |
6.0.13 | 6,355,195 | 1/10/2023 | |
6.0.12 | 9,683,715 | 12/13/2022 | |
6.0.11 | 9,089,067 | 11/7/2022 | |
6.0.10 | 16,158,381 | 10/11/2022 | |
6.0.9 | 14,225,959 | 9/13/2022 | |
6.0.8 | 16,914,641 | 8/9/2022 | |
6.0.7 | 45,513,828 | 7/12/2022 | |
6.0.6 | 13,653,789 | 6/14/2022 | |
6.0.5 | 20,854,258 | 5/10/2022 | |
6.0.4 | 16,837,088 | 4/11/2022 | |
6.0.3 | 22,262,273 | 3/8/2022 | |
6.0.2 | 18,637,697 | 2/8/2022 | |
6.0.1 | 30,435,748 | 12/14/2021 | |
6.0.0 | 59,241,101 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 313,290 | 10/12/2021 | |
6.0.0-rc.1.21452.10 | 231,458 | 9/14/2021 | |
6.0.0-preview.7.21378.4 | 92,203 | 8/10/2021 | |
6.0.0-preview.6.21352.1 | 42,955 | 7/14/2021 | |
6.0.0-preview.5.21301.9 | 181,996 | 6/15/2021 | |
6.0.0-preview.4.21253.1 | 71,233 | 5/24/2021 | |
6.0.0-preview.3.21201.2 | 93,526 | 4/8/2021 | |
6.0.0-preview.2.21154.2 | 72,770 | 3/11/2021 | |
6.0.0-preview.1.21102.2 | 93,163 | 2/12/2021 | |
5.0.17 | 6,892,334 | 5/10/2022 | |
5.0.16 | 1,428,109 | 4/11/2022 | |
5.0.15 | 2,190,603 | 3/8/2022 | |
5.0.14 | 2,285,249 | 2/8/2022 | |
5.0.13 | 4,243,859 | 12/14/2021 | |
5.0.12 | 4,657,076 | 11/7/2021 | |
5.0.11 | 8,114,368 | 10/12/2021 | |
5.0.10 | 12,856,818 | 9/14/2021 | |
5.0.9 | 9,953,822 | 8/10/2021 | |
5.0.8 | 9,164,498 | 7/13/2021 | |
5.0.7 | 13,935,591 | 6/8/2021 | |
5.0.6 | 7,960,625 | 5/11/2021 | |
5.0.5 | 11,035,067 | 4/6/2021 | |
5.0.4 | 8,065,465 | 3/9/2021 | |
5.0.3 | 7,907,410 | 2/9/2021 | |
5.0.2 | 10,270,840 | 1/12/2021 | |
5.0.1 | 15,376,172 | 12/8/2020 | |
5.0.0 | 25,260,071 | 11/9/2020 | |
5.0.0-rc.2.20475.6 | 373,908 | 10/13/2020 | |
5.0.0-rc.1.20451.13 | 316,638 | 9/14/2020 | |
5.0.0-preview.8.20407.4 | 199,546 | 8/25/2020 | |
5.0.0-preview.7.20365.15 | 112,852 | 7/21/2020 | |
5.0.0-preview.6.20312.4 | 63,055 | 6/25/2020 | |
5.0.0-preview.5.20278.2 | 47,920 | 6/10/2020 | |
5.0.0-preview.4.20220.10 | 72,869 | 5/18/2020 | |
5.0.0-preview.3.20181.2 | 93,116 | 4/23/2020 | |
5.0.0-preview.2.20159.4 | 60,733 | 4/2/2020 | |
5.0.0-preview.2.20120.8 | 45,632 | 3/16/2020 | |
3.1.32 | 4,080,177 | 12/13/2022 | |
3.1.31 | 840,698 | 11/8/2022 | |
3.1.30 | 652,744 | 10/11/2022 | |
3.1.29 | 1,053,641 | 9/13/2022 | |
3.1.28 | 769,328 | 8/9/2022 | |
3.1.27 | 695,765 | 7/12/2022 | |
3.1.26 | 591,464 | 6/14/2022 | |
3.1.25 | 1,020,938 | 5/10/2022 | |
3.1.24 | 627,528 | 4/11/2022 | |
3.1.23 | 1,010,826 | 3/8/2022 | |
3.1.22 | 3,135,910 | 12/14/2021 | |
3.1.21 | 2,491,435 | 11/7/2021 | |
3.1.20 | 1,438,399 | 10/11/2021 | |
3.1.19 | 2,384,212 | 9/14/2021 | |
3.1.18 | 5,048,819 | 8/10/2021 | |
3.1.17 | 1,817,134 | 7/13/2021 | |
3.1.16 | 2,305,469 | 6/8/2021 | |
3.1.15 | 2,678,210 | 5/11/2021 | |
3.1.14 | 3,030,603 | 4/6/2021 | |
3.1.13 | 4,435,771 | 3/9/2021 | |
3.1.12 | 2,929,300 | 2/9/2021 | |
3.1.11 | 5,296,205 | 1/12/2021 | |
3.1.10 | 8,206,960 | 11/9/2020 | |
3.1.9 | 11,774,586 | 10/13/2020 | |
3.1.8 | 17,442,217 | 9/8/2020 | |
3.1.7 | 9,764,392 | 8/11/2020 | |
3.1.6 | 10,564,793 | 7/14/2020 | |
3.1.5 | 12,491,427 | 6/9/2020 | |
3.1.4 | 17,533,434 | 5/12/2020 | |
3.1.3 | 27,219,035 | 3/24/2020 | |
3.1.2 | 11,682,275 | 2/19/2020 | |
3.1.1 | 19,535,341 | 1/14/2020 | |
3.1.0 | 33,046,285 | 12/3/2019 | |
3.1.0-preview3.19554.8 | 163,741 | 11/13/2019 | |
3.1.0-preview2.19525.5 | 32,250 | 11/1/2019 | |
3.1.0-preview1.19506.2 | 737,014 | 10/15/2019 | |
3.0.3 | 181,597 | 2/19/2020 | |
3.0.2 | 78,953 | 1/14/2020 | |
3.0.1 | 1,378,542 | 11/18/2019 | |
3.0.0 | 18,497,721 | 9/23/2019 | |
3.0.0-rc1.19456.14 | 46,232 | 9/16/2019 | |
3.0.0-preview9.19423.6 | 1,353,715 | 9/4/2019 | |
3.0.0-preview8.19405.11 | 411,784 | 8/13/2019 | |
3.0.0-preview7.19362.6 | 89,742 | 7/23/2019 | |
3.0.0-preview6.19304.10 | 166,120 | 6/12/2019 | |
3.0.0-preview5.19227.1 | 670,135 | 5/6/2019 | |
3.0.0-preview4.19216.3 | 22,678 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 201,159 | 3/6/2019 | |
3.0.0-preview.19074.3 | 30,740 | 1/29/2019 | |
3.0.0-preview.18572.1 | 47,714 | 12/3/2018 | |
2.2.6 | 30,928,997 | 7/9/2019 | |
2.2.4 | 19,223,742 | 4/9/2019 | |
2.2.3 | 5,273,362 | 3/11/2019 | |
2.2.2 | 6,336,489 | 2/12/2019 | |
2.2.1 | 6,793,609 | 1/8/2019 | |
2.2.0 | 20,838,207 | 12/3/2018 | |
2.2.0-preview3-35497 | 183,913 | 10/17/2018 | |
2.2.0-preview2-35157 | 144,707 | 9/12/2018 | |
2.2.0-preview1-35029 | 80,817 | 8/22/2018 | |
2.1.14 | 3,807,560 | 11/18/2019 | |
2.1.11 | 3,663,223 | 5/14/2019 | |
2.1.8 | 3,622,764 | 2/12/2019 | |
2.1.4 | 15,318,528 | 10/1/2018 | |
2.1.3 | 4,849,006 | 9/11/2018 | |
2.1.2 | 8,016,596 | 8/21/2018 | |
2.1.1 | 15,277,812 | 6/18/2018 | |
2.1.0 | 12,977,259 | 5/29/2018 | |
2.1.0-rc1-final | 221,709 | 5/6/2018 | |
2.1.0-preview2-final | 202,944 | 4/10/2018 | |
2.1.0-preview1-final | 314,757 | 2/26/2018 | |
2.0.3 | 5,215,521 | 5/7/2018 | |
2.0.2 | 6,526,009 | 3/13/2018 | |
2.0.1 | 12,228,705 | 11/14/2017 | |
2.0.0 | 26,292,647 | 8/11/2017 | |
2.0.0-preview2-final | 95,110 | 6/28/2017 | |
2.0.0-preview1-final | 1,088,467 | 5/10/2017 | |
1.1.6 | 5,509,143 | 7/10/2018 | |
1.1.5 | 1,230,407 | 12/12/2017 | |
1.1.4 | 217,374 | 11/14/2017 | |
1.1.3 | 305,180 | 9/20/2017 | |
1.1.2 | 4,828,097 | 5/9/2017 | |
1.1.1 | 3,039,521 | 3/6/2017 | |
1.1.0 | 6,535,951 | 11/16/2016 | |
1.1.0-preview1-final | 46,155 | 10/24/2016 | |
1.0.6 | 52,893 | 11/14/2017 | |
1.0.5 | 41,982 | 9/20/2017 | |
1.0.4 | 56,701 | 5/9/2017 | |
1.0.3 | 604,599 | 3/6/2017 | |
1.0.2 | 77,767 | 12/12/2016 | |
1.0.1 | 706,599 | 9/13/2016 | |
1.0.0 | 1,483,941 | 6/27/2016 | |
1.0.0-rc2-final | 134,233 | 5/16/2016 |