Microsoft.EntityFrameworkCore 8.0.28

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.
145
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
141
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
140
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
139
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
139
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
138
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.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
136
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.
131
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
131
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
130
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
129
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
129
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/7cd2eb79628a2511af8e8d2699c29380909ab004
128
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
128

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