Npgsql.EntityFrameworkCore.PostgreSQL 11.0.0-preview.6

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.

No packages depend on Npgsql.EntityFrameworkCore.PostgreSQL.

.NET 11.0

Version Downloads Last updated
11.0.0-preview.6 21 07/16/2026
11.0.0-preview.5 23 06/22/2026
11.0.0-preview.4 28 05/17/2026
11.0.0-preview.3 43 04/30/2026
11.0.0-preview.2 48 03/11/2026
11.0.0-preview.1 54 02/13/2026
10.0.3 18 07/10/2026
10.0.2 27 05/27/2026
10.0.1 70 03/13/2026
10.0.0 382 11/23/2025
10.0.0-rc.2 95 10/17/2025
10.0.0-rc.1 101 09/10/2025
10.0.0-preview.7 114 08/18/2025
10.0.0-preview.5 111 06/13/2025
10.0.0-preview.3 121 04/13/2025
10.0.0-preview.2 127 03/31/2025
10.0.0-preview.1 136 03/31/2025
9.0.4 811 03/15/2025
9.0.3 276 02/11/2025
9.0.2 150 12/22/2024
9.0.1 129 11/19/2024
9.0.0 134 11/19/2024
9.0.0-rc.2 133 10/21/2024
9.0.0-rc.1 144 09/19/2024
9.0.0-preview.7 124 09/19/2024
9.0.0-preview.3 153 07/19/2024
9.0.0-preview.2 189 07/19/2024
9.0.0-preview.1 170 07/19/2024
8.0.11 130 11/19/2024
8.0.10 334 10/22/2024
8.0.8 283 10/15/2024
8.0.4 424 06/27/2024
8.0.2 152 07/19/2024
8.0.0 453 02/04/2024
8.0.0-rc.2 162 07/19/2024
8.0.0-rc.1 174 07/19/2024
8.0.0-preview.7 168 07/19/2024
8.0.0-preview.4 166 07/19/2024
8.0.0-preview.3 165 07/19/2024
8.0.0-preview.2 129 07/19/2024
8.0.0-preview.1 170 07/19/2024
7.0.18 149 07/19/2024
7.0.11 156 07/19/2024
7.0.4 164 07/19/2024
7.0.3 221 02/04/2024
7.0.1 166 07/19/2024
7.0.0 159 02/04/2024
7.0.0-rc.2 184 07/19/2024
7.0.0-rc.1 147 07/19/2024
7.0.0-preview.7 142 07/19/2024
7.0.0-preview.6 139 07/19/2024
7.0.0-preview.5 153 07/19/2024
7.0.0-preview.4 135 07/19/2024
7.0.0-preview.3 138 07/19/2024
7.0.0-preview.2 145 07/19/2024
7.0.0-preview.1 140 07/19/2024
6.0.29 148 07/19/2024
6.0.22 165 07/19/2024
6.0.8 154 07/19/2024
6.0.7 159 07/19/2024
6.0.6 180 07/19/2024
6.0.5 159 07/19/2024
6.0.4 184 02/09/2024
6.0.3 216 02/04/2024
6.0.2 170 07/19/2024
6.0.1 182 07/19/2024
6.0.0 175 07/17/2024
6.0.0-rc.2 151 07/19/2024
6.0.0-rc.1 167 07/19/2024
6.0.0-preview7 160 07/19/2024
6.0.0-preview6 164 07/19/2024
6.0.0-preview5 150 07/19/2024
6.0.0-preview4 150 07/19/2024
6.0.0-preview3 159 07/19/2024
6.0.0-preview2 136 07/19/2024
6.0.0-preview1 141 07/19/2024
5.0.10 186 07/19/2024
5.0.7 147 07/19/2024
5.0.6 155 07/19/2024
5.0.5.1 131 07/19/2024
5.0.5 147 07/19/2024
5.0.2 162 07/19/2024
5.0.1 166 07/19/2024
5.0.0 151 07/19/2024
3.1.18 148 07/19/2024
3.1.11 153 07/19/2024
3.1.4 163 07/19/2024
3.1.3 141 07/19/2024
3.1.2 174 07/22/2024
3.1.1.2 153 07/19/2024
3.1.1.1 170 07/19/2024
3.1.1 156 07/19/2024
3.1.0 179 07/17/2024
3.0.1 172 06/24/2024
3.0.0 166 06/17/2024
2.2.4 163 07/19/2024
2.2.0 161 07/19/2024
2.1.2 154 07/19/2024
2.1.1.1 143 07/19/2024
2.1.1 164 07/19/2024
2.1.0 156 07/19/2024
2.0.2 154 07/19/2024
2.0.1 149 07/19/2024
2.0.0 153 07/19/2024
1.1.1 148 07/19/2024
1.1.0 158 07/19/2024
1.0.2 162 07/19/2024
1.0.1 174 07/19/2024
1.0.0 156 07/19/2024