Microsoft.EntityFrameworkCore 8.0.27

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.

Showing the top 20 packages that depend on Microsoft.EntityFrameworkCore.

Packages Downloads
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
140
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
137
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
137
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
136
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
136
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
135
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
135
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers. This package was built from the source code at https://github.com/aspnet/EntityFrameworkCore/tree/8e7402701ea1416b7fe55e1863ae65b3147c02c7
134
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
132
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
127
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
127
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers. This package was built from the source code at https://github.com/aspnet/EntityFrameworkCore/tree/d1b10fc6ccca83e29109a0a8d9c047f2e68aede5
126
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
126
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
126
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
125

Version Downloads Last updated
11.0.0-preview.4.26230.115 12 5/12/2026
11.0.0-preview.3.26207.106 13 5/3/2026
11.0.0-preview.2.26159.112 16 3/12/2026
11.0.0-preview.1.26104.118 17 2/12/2026
10.0.8 6 5/13/2026
10.0.7 15 5/3/2026
10.0.6 13 5/3/2026
10.0.5 13 3/14/2026
10.0.4 11 3/12/2026
10.0.3 16 2/12/2026
10.0.2 24 1/15/2026
10.0.1 27 12/10/2025
10.0.0 47 11/12/2025
10.0.0-rc.2.25502.107 56 10/15/2025
10.0.0-rc.1.25451.107 71 9/10/2025
10.0.0-preview.7.25380.108 69 8/12/2025
10.0.0-preview.6.25358.103 77 7/15/2025
10.0.0-preview.5.25277.114 67 6/8/2025
10.0.0-preview.4.25258.110 93 5/16/2025
10.0.0-preview.3.25171.6 85 4/12/2025
10.0.0-preview.2.25163.8 88 3/18/2025
10.0.0-preview.1.25081.1 84 2/28/2025
9.0.16 8 5/13/2026
9.0.15 17 5/3/2026
9.0.14 12 3/12/2026
9.0.13 19 2/12/2026
9.0.12 20 1/15/2026
9.0.11 45 11/12/2025
9.0.10 60 10/15/2025
9.0.9 82 9/10/2025
9.0.8 69 8/5/2025
9.0.7 88 7/11/2025
9.0.6 88 6/15/2025
9.0.5 81 5/17/2025
9.0.4 88 4/8/2025
9.0.3 102 3/13/2025
9.0.2 107 2/15/2025
9.0.1 109 1/18/2025
9.0.0 105 11/12/2024
9.0.0-rc.2.24474.1 106 10/11/2024
9.0.0-rc.1.24451.1 92 9/11/2024
9.0.0-preview.7.24405.3 102 8/14/2024
9.0.0-preview.6.24327.4 100 7/10/2024
9.0.0-preview.5.24306.3 115 6/14/2024
9.0.0-preview.4.24267.1 102 5/25/2024
9.0.0-preview.3.24172.4 100 4/14/2024
9.0.0-preview.2.24128.4 102 3/21/2024
9.0.0-preview.1.24081.2 105 2/21/2024
8.0.27 9 5/13/2026
8.0.26 17 5/3/2026
8.0.25 10 3/12/2026
8.0.24 16 2/12/2026
8.0.23 18 1/15/2026
8.0.22 41 11/12/2025
8.0.21 59 10/15/2025
8.0.20 63 9/10/2025
8.0.19 55 8/6/2025
8.0.18 80 7/11/2025
8.0.17 77 6/15/2025
8.0.16 87 5/17/2025
8.0.15 86 4/9/2025
8.0.14 81 3/13/2025
8.0.13 81 2/20/2025
8.0.12 87 1/18/2025
8.0.11 94 11/13/2024
8.0.10 105 10/12/2024
8.0.8 91 8/13/2024
8.0.7 107 7/9/2024
8.0.6 104 5/29/2024
8.0.5 95 5/23/2024
8.0.4 100 4/10/2024
8.0.3 121 3/20/2024
8.0.2 102 2/22/2024
8.0.1 112 1/11/2024
8.0.0 110 11/15/2023
8.0.0-rc.2.23480.1 119 10/13/2023
8.0.0-rc.1.23419.6 127 9/15/2023
8.0.0-preview.7.23375.4 122 8/22/2023
8.0.0-preview.6.23329.4 117 7/31/2023
8.0.0-preview.5.23280.1 115 7/31/2023
8.0.0-preview.4.23259.3 125 5/20/2023
8.0.0-preview.3.23174.2 114 5/14/2023
8.0.0-preview.2.23128.3 125 7/31/2023
8.0.0-preview.1.23111.4 148 2/23/2023
7.0.20 101 5/29/2024
7.0.19 95 5/23/2024
7.0.18 109 4/10/2024
7.0.17 112 3/20/2024
7.0.16 106 2/22/2024
7.0.15 100 1/15/2024
7.0.14 117 11/15/2023
7.0.13 114 10/28/2023
7.0.12 117 10/10/2023
7.0.11 102 9/16/2023
7.0.10 119 8/20/2023
7.0.9 125 7/31/2023
7.0.8 115 7/31/2023
7.0.7 121 7/31/2023
7.0.5 125 5/12/2023
7.0.4 119 5/12/2023
7.0.3 108 2/21/2023
7.0.2 110 2/21/2023
7.0.1 137 2/14/2023
7.0.0 117 12/3/2022
7.0.0-rc.2.22472.11 119 11/9/2022
7.0.0-rc.1.22426.7 126 9/15/2022
7.0.0-preview.7.22376.2 103 9/11/2022
7.0.0-preview.6.22329.4 124 9/14/2022
7.0.0-preview.5.22302.2 145 6/27/2022
7.0.0-preview.4.22229.2 125 6/30/2022
7.0.0-preview.3.22175.1 130 6/30/2022
7.0.0-preview.2.22153.1 131 6/30/2022
7.0.0-preview.1.22076.6 125 6/30/2022
6.0.36 95 11/13/2024
6.0.35 97 10/11/2024
6.0.33 102 8/14/2024
6.0.32 113 7/9/2024
6.0.31 107 5/29/2024
6.0.30 123 5/19/2024
6.0.29 110 4/10/2024
6.0.28 115 3/20/2024
6.0.27 109 2/22/2024
6.0.26 99 1/15/2024
6.0.25 111 11/16/2023
6.0.24 104 10/28/2023
6.0.23 117 10/10/2023
6.0.22 112 9/17/2023
6.0.21 111 8/22/2023
6.0.20 108 7/31/2023
6.0.19 143 7/31/2023
6.0.18 116 7/31/2023
6.0.16 123 5/12/2023
6.0.15 120 3/16/2023
6.0.14 112 2/21/2023
6.0.13 129 2/9/2023
6.0.12 128 12/30/2022
6.0.11 125 12/3/2022
6.0.10 116 12/3/2022
6.0.9 121 9/14/2022
6.0.8 120 9/14/2022
6.0.7 159 7/26/2022
6.0.6 120 6/30/2022
6.0.5 116 6/30/2022
6.0.4 110 6/30/2022
6.0.3 117 6/30/2022
6.0.2 124 6/30/2022
6.0.1 105 6/30/2022
6.0.0 139 6/30/2022
6.0.0-rc.2.21480.5 125 6/30/2022
6.0.0-rc.1.21452.10 122 6/30/2022
6.0.0-preview.7.21378.4 135 6/30/2022
6.0.0-preview.6.21352.1 126 6/30/2022
6.0.0-preview.5.21301.9 154 6/30/2022
6.0.0-preview.4.21253.1 123 6/30/2022
6.0.0-preview.3.21201.2 117 6/30/2022
6.0.0-preview.2.21154.2 134 6/30/2022
6.0.0-preview.1.21102.2 133 6/30/2022
5.0.17 130 6/30/2022
5.0.16 126 6/30/2022
5.0.15 144 6/30/2022
5.0.14 131 6/30/2022
5.0.13 123 6/30/2022
5.0.12 122 6/30/2022
5.0.11 122 6/30/2022
5.0.10 142 6/30/2022
5.0.9 139 6/30/2022
5.0.8 111 6/30/2022
5.0.7 132 6/30/2022
5.0.6 114 6/30/2022
5.0.5 122 6/30/2022
5.0.4 123 6/30/2022
5.0.3 115 6/30/2022
5.0.2 115 6/30/2022
5.0.1 127 6/30/2022
5.0.0 118 6/30/2022
5.0.0-rc.2.20475.6 109 6/30/2022
5.0.0-rc.1.20451.13 136 6/30/2022
5.0.0-preview.8.20407.4 128 6/30/2022
5.0.0-preview.7.20365.15 115 6/30/2022
5.0.0-preview.6.20312.4 153 6/30/2022
5.0.0-preview.5.20278.2 117 6/30/2022
5.0.0-preview.4.20220.10 113 6/30/2022
5.0.0-preview.3.20181.2 114 6/30/2022
5.0.0-preview.2.20159.4 115 6/30/2022
5.0.0-preview.2.20120.8 122 6/30/2022
3.1.32 131 2/1/2023
3.1.31 108 12/3/2022
3.1.30 122 11/7/2022
3.1.29 124 9/14/2022
3.1.28 122 9/14/2022
3.1.27 114 9/14/2022
3.1.26 116 6/30/2022
3.1.25 109 6/30/2022
3.1.24 120 6/30/2022
3.1.23 128 6/30/2022
3.1.22 120 6/30/2022
3.1.21 111 6/30/2022
3.1.20 115 6/30/2022
3.1.19 116 6/30/2022
3.1.18 115 6/30/2022
3.1.17 129 6/30/2022
3.1.16 112 6/30/2022
3.1.15 110 6/30/2022
3.1.14 127 6/30/2022
3.1.13 134 6/30/2022
3.1.12 114 6/30/2022
3.1.11 122 6/30/2022
3.1.10 109 6/30/2022
3.1.9 113 6/30/2022
3.1.8 119 6/30/2022
3.1.7 116 6/30/2022
3.1.6 128 6/30/2022
3.1.5 108 6/30/2022
3.1.4 122 6/30/2022
3.1.3 117 6/30/2022
3.1.2 118 6/30/2022
3.1.1 120 6/30/2022
3.1.0 131 6/30/2022
3.1.0-preview3.19554.8 120 6/30/2022
3.1.0-preview2.19525.5 125 6/30/2022
3.1.0-preview1.19506.2 111 6/30/2022
3.0.3 117 6/30/2022
3.0.2 133 6/30/2022
3.0.1 134 6/30/2022
3.0.0 129 6/30/2022
3.0.0-rc1.19456.14 149 6/30/2022
3.0.0-preview9.19423.6 125 6/30/2022
3.0.0-preview8.19405.11 116 6/30/2022
3.0.0-preview7.19362.6 136 6/30/2022
3.0.0-preview6.19304.10 133 6/30/2022
3.0.0-preview5.19227.1 110 6/30/2022
3.0.0-preview4.19216.3 121 6/30/2022
3.0.0-preview3.19153.1 129 6/30/2022
3.0.0-preview.19074.3 123 6/30/2022
3.0.0-preview.18572.1 130 6/30/2022
2.3.0 102 1/21/2025
2.2.6 114 6/30/2022
2.2.4 118 6/30/2022
2.2.3 130 6/30/2022
2.2.2 112 6/30/2022
2.2.1 135 6/30/2022
2.2.0 113 6/30/2022
2.2.0-preview3-35497 130 6/30/2022
2.2.0-preview2-35157 131 6/30/2022
2.2.0-preview1-35029 148 6/30/2022
2.1.14 108 6/30/2022
2.1.11 141 6/30/2022
2.1.8 142 6/30/2022
2.1.4 117 6/30/2022
2.1.3 109 6/30/2022
2.1.2 145 6/30/2022
2.1.1 110 6/30/2022
2.1.0 135 6/30/2022
2.1.0-rc1-final 113 6/30/2022
2.1.0-preview2-final 120 6/30/2022
2.1.0-preview1-final 128 6/30/2022
2.0.3 110 6/30/2022
2.0.2 114 6/30/2022
2.0.1 121 6/30/2022
2.0.0 116 6/30/2022
2.0.0-preview2-final 110 6/30/2022
2.0.0-preview1-final 128 6/30/2022
1.1.6 113 6/30/2022
1.1.5 140 6/30/2022
1.1.4 129 6/30/2022
1.1.3 119 6/30/2022
1.1.2 132 6/30/2022
1.1.1 146 6/30/2022
1.1.0 120 6/30/2022
1.1.0-preview1-final 113 6/30/2022
1.0.6 142 6/30/2022
1.0.5 116 6/30/2022
1.0.4 108 6/30/2022
1.0.3 116 6/30/2022
1.0.2 123 6/30/2022
1.0.1 120 6/30/2022
1.0.0 138 6/30/2022
1.0.0-rc2-final 117 6/30/2022