npgsql-vnext - Npgsql.EntityFrameworkCore.PostgreSQL 11.0.0-preview.2-ci.20260216T145341+sha.b07160303

PostgreSQL/Npgsql provider for Entity Framework Core.

PM> Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 11.0.0-preview.2-ci.20260216T145341 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> nuget.exe install Npgsql.EntityFrameworkCore.PostgreSQL -Version 11.0.0-preview.2-ci.20260216T145341 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 11.0.0-preview.2-ci.20260216T145341 --source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="11.0.0-preview.2-ci.20260216T145341" />
Copy to clipboard
source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

nuget Npgsql.EntityFrameworkCore.PostgreSQL  ~> 11.0.0-preview.2-ci.20260216T145341
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 11.0.0-preview.2-ci.20260216T145341 --source https://www.myget.org/F/npgsql-vnext/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "npgsql-vnext" -SourceLocation "https://www.myget.org/F/npgsql-vnext/api/v2"
Install-Module -Name "Npgsql.EntityFrameworkCore.PostgreSQL" -RequiredVersion "11.0.0-preview.2-ci.20260216T145341" -Repository "npgsql-vnext" -AllowPreRelease
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/npgsql-vnext/api/v2/symbolpackage/


Npgsql Entity Framework Core provider for PostgreSQL

stable next patch daily builds (vnext) build gitter

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.

Related packages

  • .NETFramework 11.0
    • Microsoft.EntityFrameworkCore (= 11.0.0-preview.1.26104.118)
    • Microsoft.EntityFrameworkCore.Relational (= 11.0.0-preview.1.26104.118)
    • Npgsql (>= 10.0.0)
  • .NETFramework 11.0: 11.0.0.0

Owners

Shay Rojansky

Authors

Shay Rojansky, Austin Drenski, Yoh Deadfall

Project URL

https://github.com/npgsql/efcore.pg

License

Unknown

Tags

npgsql postgresql postgres Entity Framework Core entity-framework-core ef efcore orm sql

Info

311 total downloads
4 downloads for version 11.0.0-preview.2-ci.20260216T145341+sha.b07160303
Download (335.59 KB)
Download symbols (95.25 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
11.0.0-preview.2-ci.20260305T091411+sha.10009c214 338.17 KB Thu, 05 Mar 2026 09:14:33 GMT 0
11.0.0-preview.2-ci.20260304T224844+sha.827755553 338.17 KB Wed, 04 Mar 2026 22:49:05 GMT 0
11.0.0-preview.2-ci.20260303T100352+sha.97525ad31 338.19 KB Tue, 03 Mar 2026 10:04:19 GMT 0
11.0.0-preview.2-ci.20260225T151131+sha.7c3cdb2d4 338.17 KB Wed, 25 Feb 2026 15:11:52 GMT 1
11.0.0-preview.2-ci.20260225T144646+sha.d0382593a 338.16 KB Wed, 25 Feb 2026 14:47:08 GMT 1
11.0.0-preview.2-ci.20260225T135425+sha.75c2ea9a3 338.17 KB Wed, 25 Feb 2026 13:55:05 GMT 1
11.0.0-preview.2-ci.20260225T135303+sha.0c06083ce 338.17 KB Wed, 25 Feb 2026 13:53:21 GMT 1
11.0.0-preview.2-ci.20260225T133707+sha.705a2ea14 338.18 KB Wed, 25 Feb 2026 13:37:30 GMT 2
11.0.0-preview.2-ci.20260225T093330+sha.9493cfc6a 338.18 KB Wed, 25 Feb 2026 09:33:52 GMT 1
11.0.0-preview.2-ci.20260222T131616+sha.e9528b4c4 338.17 KB Sun, 22 Feb 2026 13:16:35 GMT 1
11.0.0-preview.2-ci.20260222T125118+sha.86c777b65 338.16 KB Sun, 22 Feb 2026 12:51:38 GMT 2
11.0.0-preview.2-ci.20260220T111850+sha.83627a48f 335.37 KB Fri, 20 Feb 2026 11:19:12 GMT 2
11.0.0-preview.2-ci.20260220T082524+sha.7b0887fa6 335.36 KB Fri, 20 Feb 2026 08:25:45 GMT 3
11.0.0-preview.2-ci.20260218T171144+sha.f7657cd33 335.27 KB Wed, 18 Feb 2026 17:12:03 GMT 4
11.0.0-preview.2-ci.20260218T114327+sha.ee0d48a3f 335.27 KB Wed, 18 Feb 2026 11:43:45 GMT 3
11.0.0-preview.2-ci.20260217T114905+sha.510dd65a0 335.28 KB Tue, 17 Feb 2026 11:49:30 GMT 6
11.0.0-preview.2-ci.20260216T203015+sha.4ba6551d4 335.27 KB Mon, 16 Feb 2026 20:30:35 GMT 3
11.0.0-preview.2-ci.20260216T161321+sha.f894de9f5 335.59 KB Mon, 16 Feb 2026 16:13:40 GMT 3
11.0.0-preview.2-ci.20260216T152547+sha.79fae3a76 335.59 KB Mon, 16 Feb 2026 15:26:07 GMT 3
11.0.0-preview.2-ci.20260216T152526+sha.3bd8fcb70 335.59 KB Mon, 16 Feb 2026 15:25:48 GMT 3
11.0.0-preview.2-ci.20260216T145341+sha.b07160303 335.59 KB Mon, 16 Feb 2026 14:53:59 GMT 4
11.0.0-preview.2-ci.20260216T140319+sha.ce7175325 335.59 KB Mon, 16 Feb 2026 14:03:40 GMT 3
11.0.0-preview.2-ci.20260216T133539+sha.6b2c2ca38 335.59 KB Mon, 16 Feb 2026 13:36:02 GMT 4
11.0.0-preview.2-ci.20260216T131130+sha.237f7fc13 335.59 KB Mon, 16 Feb 2026 13:11:50 GMT 3
11.0.0-preview.2-ci.20260216T130843+sha.6cccd2d31 335.58 KB Mon, 16 Feb 2026 13:09:01 GMT 3
11.0.0-preview.2-ci.20260216T124235+sha.3666c8b2f 335.6 KB Mon, 16 Feb 2026 12:42:55 GMT 3
11.0.0-preview.2-ci.20260216T100625+sha.066cbfed8 335.59 KB Mon, 16 Feb 2026 10:06:44 GMT 3
11.0.0-preview.2-ci.20260216T094227+sha.70a72bd36 335.59 KB Mon, 16 Feb 2026 09:42:47 GMT 6
11.0.0-preview.2-ci.20260216T094104+sha.036cc51c7 335.6 KB Mon, 16 Feb 2026 09:41:24 GMT 3
11.0.0-preview.2-ci.20260210T230217+sha.b6a1b253c 335.59 KB Tue, 10 Feb 2026 23:02:39 GMT 4
11.0.0-preview.1-ci.20260210T220701+sha.3fbb5e7b9 335.58 KB Tue, 10 Feb 2026 22:07:21 GMT 4
11.0.0-preview.1-ci.20260209T205320+sha.9edb0f1f5 335.87 KB Mon, 09 Feb 2026 20:53:44 GMT 3
11.0.0-preview.1-ci.20260207T005345+sha.5604097e6 337.01 KB Sat, 07 Feb 2026 00:54:09 GMT 4
11.0.0-preview.1-ci.20260202T110604+sha.ab2f0a65d 336.95 KB Mon, 02 Feb 2026 11:06:30 GMT 3
11.0.0-preview.1-ci.20260202T082501+sha.98d067190 336.82 KB Mon, 02 Feb 2026 08:25:25 GMT 3
11.0.0-preview.1-ci.20260124T091102+sha.bd07c342f 336.83 KB Sat, 24 Jan 2026 09:11:28 GMT 6
11.0.0-preview.1-ci.20260123T141429+sha.789f55a78 333.89 KB Fri, 23 Jan 2026 14:14:55 GMT 5
11.0.0-preview.1-ci.20260105T211027+sha.8cbca8b43 330.88 KB Mon, 05 Jan 2026 21:10:52 GMT 9
11.0.0-preview.1-ci.20260105T211008+sha.b2f68a3ea 330.89 KB Mon, 05 Jan 2026 21:10:31 GMT 7
11.0.0-preview.1-ci.20251225T093714+sha.4356b4319 330.73 KB Thu, 25 Dec 2025 09:37:37 GMT 10
11.0.0-preview.1-ci.20251224T135838+sha.f367738ba 330.73 KB Wed, 24 Dec 2025 13:59:02 GMT 10
11.0.0-preview.1-ci.20251224T134551+sha.a64c405a8 330.71 KB Wed, 24 Dec 2025 13:46:15 GMT 10
11.0.0-preview.1-ci.20251215T102439+sha.f4c118306 330.75 KB Mon, 15 Dec 2025 10:25:05 GMT 15
11.0.0-preview.1-ci.20251210T075613+sha.7867fd82d 330.75 KB Wed, 10 Dec 2025 07:56:40 GMT 14
11.0.0-preview.1-ci.20251125T212119+sha.539b2559f 330.73 KB Tue, 25 Nov 2025 21:21:42 GMT 19
10.0.0-rtm-ci.20251121T122129+sha.fc14e51bf 330.74 KB Fri, 21 Nov 2025 12:21:52 GMT 19
10.0.0-rtm-ci.20251120T065334+sha.efa63018a 330.72 KB Thu, 20 Nov 2025 06:53:59 GMT 25
10.0.0-rtm-ci.20251119T224923+sha.890e65218 330.72 KB Wed, 19 Nov 2025 22:49:49 GMT 20
10.0.0-rtm-ci.20251116T113127+sha.dc091585d 330.71 KB Sun, 16 Nov 2025 11:31:54 GMT 26
10.0.0-rtm-ci.20251111T072350+sha.e56c11f4f 330.71 KB Tue, 11 Nov 2025 07:24:12 GMT 23