Npgsql.EntityFrameworkCore.PostgreSQL 10.0.0-preview.2

Npgsql Entity Framework Core provider for PostgreSQL

Npgsql.EntityFrameworkCore.PostgreSQL is the open source EF Core provider for PostgreSQL. It allows you to interact with PostgreSQL via the most widely-used .NET O/RM from Microsoft, and use familiar LINQ syntax to express queries. It's built on top of Npgsql.

The provider looks and feels just like any other Entity Framework Core provider. Here's a quick sample to get you started:

await using var ctx = new BlogContext();
await ctx.Database.EnsureDeletedAsync();
await ctx.Database.EnsureCreatedAsync();

// Insert a Blog
ctx.Blogs.Add(new() { Name = "FooBlog" });
await ctx.SaveChangesAsync();

// Query all blogs who's name starts with F
var fBlogs = await ctx.Blogs.Where(b => b.Name.StartsWith("F")).ToListAsync();

public class BlogContext : DbContext
{
    public DbSet<Blog> Blogs { get; set; }

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        => optionsBuilder.UseNpgsql(@"Host=myserver;Username=mylogin;Password=mypass;Database=mydatabase");
}

public class Blog
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Aside from providing general EF Core support for PostgreSQL, the provider also exposes some PostgreSQL-specific capabilities, allowing you to query JSON, array or range columns, as well as many other advanced features. For more information, see the the Npgsql site. For information about EF Core in general, see the EF Core website.

Showing the top 20 packages that depend on Npgsql.EntityFrameworkCore.PostgreSQL.

Packages Downloads
EFCore.BulkExtensions
EntityFramework EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite
13
EFCore.BulkExtensions
EntityFramework EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, SQLite
11
EFCore.BulkExtensions
EntityFramework EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, SQLite
12
EFCore.BulkExtensions
EntityFramework EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, SQLite
14
EFCore.BulkExtensions
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite
11
EFCore.BulkExtensions
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite
12
EFCore.BulkExtensions
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite
13
EFCore.BulkExtensions
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite
17
EFCore.BulkExtensions
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on SQL Server, PostgreSQL, MySQL, SQLite
22
EFCore.BulkExtensions.PostgreSql
EntityFramework EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on PostgreSQL
11
EFCore.BulkExtensions.PostgreSql
EntityFramework EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on PostgreSQL
14
EFCore.BulkExtensions.PostgreSql
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on PostgreSQL
11
EFCore.BulkExtensions.PostgreSql
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on PostgreSQL
12
Quantum.FrameworkNetCore
Used for set up Micro-Service.
19

.NET 10.0

Version Downloads Last updated
10.0.0-preview.2 2 03/24/2025
10.0.0-preview.1 1 03/15/2025
9.0.4 3 03/15/2025
9.0.3 5 01/25/2025
9.0.2 5 12/26/2024
9.0.1 9 12/02/2024
9.0.0-rc.2 8 11/28/2024
9.0.0-rc.1 8 12/04/2024
9.0.0-preview.7 7 11/28/2024
9.0.0-preview.3 18 04/20/2024
9.0.0-preview.2 10 05/29/2024
9.0.0-preview.1 9 05/29/2024
8.0.11 10 11/28/2024
8.0.10 8 12/02/2024
8.0.8 9 12/03/2024
8.0.4 14 05/29/2024
8.0.2 15 04/27/2024
8.0.0 17 05/29/2024
8.0.0-rc.2 20 04/10/2024
8.0.0-rc.1 10 04/27/2024
8.0.0-preview.7 12 04/27/2024
8.0.0-preview.4 14 04/27/2024
8.0.0-preview.3 14 05/10/2024
8.0.0-preview.2 10 05/02/2024
8.0.0-preview.1 14 05/15/2024
7.0.18 13 05/29/2024
7.0.11 12 04/27/2024
7.0.4 9 05/28/2024
7.0.3 10 05/23/2024
7.0.1 16 02/10/2023
7.0.0 13 05/10/2024
7.0.0-rc.2 11 05/15/2024
7.0.0-rc.1 15 04/27/2024
7.0.0-preview.7 12 05/18/2024
7.0.0-preview.6 10 05/19/2024
7.0.0-preview.5 12 05/24/2024
7.0.0-preview.4 12 05/11/2024
7.0.0-preview.2 14 05/15/2024
7.0.0-preview.1 11 06/19/2023
6.0.29 14 05/29/2024
6.0.22 12 04/27/2024
6.0.6 14 01/29/2023
6.0.5 12 05/15/2024
6.0.3 11 02/07/2023
6.0.2 11 05/19/2024
6.0.1 11 04/27/2024
6.0.0 13 01/29/2023
6.0.0-rc.1 11 05/22/2024
6.0.0-preview7 17 05/08/2024
6.0.0-preview6 13 06/19/2023
6.0.0-preview5 15 05/13/2024
6.0.0-preview4 13 04/27/2024
6.0.0-preview3 12 05/23/2024
6.0.0-preview2 12 05/05/2024
5.0.10 11 05/11/2024
5.0.5 12 05/14/2024
5.0.0 13 05/03/2024
3.1.18 13 05/25/2024
3.1.1 12 06/19/2023
3.0.0 12 05/22/2024
2.1.2 10 05/19/2024
2.1.1.1 13 06/19/2023
2.0.2 11 05/14/2024
2.0.1 10 05/18/2024
2.0.0 11 05/25/2024
1.1.1 14 05/20/2024
1.1.0 11 05/02/2024
1.0.1 10 05/11/2024
1.0.0 16 01/29/2023