npgsql-vnext - Npgsql.EntityFrameworkCore.PostgreSQL 11.0.0-preview.2-ci.20260222T131616+sha.e9528b4c4

PostgreSQL/Npgsql provider for Entity Framework Core.

PM> Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 11.0.0-preview.2-ci.20260222T131616 -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.20260222T131616 -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.20260222T131616 --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.20260222T131616" />
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.20260222T131616
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 11.0.0-preview.2-ci.20260222T131616 --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.20260222T131616" -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.2.26117.101)
    • Microsoft.EntityFrameworkCore.Relational (= 11.0.0-preview.2.26117.101)
    • 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

572 total downloads
12 downloads for version 11.0.0-preview.2-ci.20260222T131616+sha.e9528b4c4
Download (338.17 KB)
Download symbols (95.98 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
11.0.0-preview.5-ci.20260428T094605+sha.01966c19b 338.31 KB Tue, 28 Apr 2026 09:46:35 GMT 0
11.0.0-preview.5-ci.20260428T090022+sha.4e4c6a430 338.31 KB Tue, 28 Apr 2026 09:00:44 GMT 0
11.0.0-preview.4-ci.20260428T085825+sha.2d9167453 338.31 KB Tue, 28 Apr 2026 08:58:46 GMT 0
11.0.0-preview.4-ci.20260426T113032+sha.a964a6352 338.31 KB Sun, 26 Apr 2026 11:30:53 GMT 0
11.0.0-preview.4-ci.20260420T081730+sha.b2dce20e1 338.29 KB Mon, 20 Apr 2026 08:17:52 GMT 0
11.0.0-preview.4-ci.20260420T070857+sha.640371757 338.54 KB Mon, 20 Apr 2026 07:09:21 GMT 0
11.0.0-preview.4-ci.20260413T101034+sha.b3b562e36 338.54 KB Mon, 13 Apr 2026 10:10:55 GMT 7
11.0.0-preview.3-ci.20260406T080708+sha.1236e55bf 338.48 KB Mon, 06 Apr 2026 08:07:32 GMT 7
11.0.0-preview.3-ci.20260406T075807+sha.a2e2b934a 338.47 KB Mon, 06 Apr 2026 07:58:26 GMT 7
11.0.0-preview.3-ci.20260331T090428+sha.9119f83bb 338.41 KB Tue, 31 Mar 2026 09:04:45 GMT 11
11.0.0-preview.3-ci.20260331T074742+sha.865e1088e 338.4 KB Tue, 31 Mar 2026 07:48:30 GMT 8
11.0.0-preview.3-ci.20260331T071449+sha.6bba43fbe 338.4 KB Tue, 31 Mar 2026 07:15:54 GMT 8
11.0.0-preview.3-ci.20260325T152933+sha.db5d68e71 338.39 KB Wed, 25 Mar 2026 15:29:53 GMT 8
11.0.0-preview.3-ci.20260324T193322+sha.fbd8aabd7 338.39 KB Tue, 24 Mar 2026 19:33:43 GMT 9
11.0.0-preview.3-ci.20260323T123819+sha.fd2607584 338.4 KB Mon, 23 Mar 2026 12:38:39 GMT 9
11.0.0-preview.3-ci.20260311T160757+sha.882059d59 338.39 KB Wed, 11 Mar 2026 16:08:19 GMT 12
11.0.0-preview.3-ci.20260310T111832+sha.1a4ff35f8 338.38 KB Tue, 10 Mar 2026 11:18:52 GMT 11
11.0.0-preview.3-ci.20260305T101740+sha.9147a7e81 338.18 KB Thu, 05 Mar 2026 10:18:09 GMT 15
11.0.0-preview.2-ci.20260305T101729+sha.3e04f93a1 338.19 KB Thu, 05 Mar 2026 10:17:50 GMT 12
11.0.0-preview.2-ci.20260305T100817+sha.cd9db0f1d 338.18 KB Thu, 05 Mar 2026 10:08:38 GMT 11
11.0.0-preview.2-ci.20260305T100737+sha.3e04f93a1 338.18 KB Thu, 05 Mar 2026 10:07:59 GMT 12
11.0.0-preview.2-ci.20260305T091411+sha.10009c214 338.17 KB Thu, 05 Mar 2026 09:14:33 GMT 12
11.0.0-preview.2-ci.20260304T224844+sha.827755553 338.17 KB Wed, 04 Mar 2026 22:49:05 GMT 15
11.0.0-preview.2-ci.20260303T100352+sha.97525ad31 338.19 KB Tue, 03 Mar 2026 10:04:19 GMT 18
11.0.0-preview.2-ci.20260225T151131+sha.7c3cdb2d4 338.17 KB Wed, 25 Feb 2026 15:11:52 GMT 12
11.0.0-preview.2-ci.20260225T144646+sha.d0382593a 338.16 KB Wed, 25 Feb 2026 14:47:08 GMT 15
11.0.0-preview.2-ci.20260225T135425+sha.75c2ea9a3 338.17 KB Wed, 25 Feb 2026 13:55:05 GMT 14
11.0.0-preview.2-ci.20260225T135303+sha.0c06083ce 338.17 KB Wed, 25 Feb 2026 13:53:21 GMT 13
11.0.0-preview.2-ci.20260225T133707+sha.705a2ea14 338.18 KB Wed, 25 Feb 2026 13:37:30 GMT 13
11.0.0-preview.2-ci.20260225T093330+sha.9493cfc6a 338.18 KB Wed, 25 Feb 2026 09:33:52 GMT 14
11.0.0-preview.2-ci.20260222T131616+sha.e9528b4c4 338.17 KB Sun, 22 Feb 2026 13:16:35 GMT 12
11.0.0-preview.2-ci.20260222T125118+sha.86c777b65 338.16 KB Sun, 22 Feb 2026 12:51:38 GMT 19
11.0.0-preview.2-ci.20260220T111850+sha.83627a48f 335.37 KB Fri, 20 Feb 2026 11:19:12 GMT 15
11.0.0-preview.2-ci.20260220T082524+sha.7b0887fa6 335.36 KB Fri, 20 Feb 2026 08:25:45 GMT 15
11.0.0-preview.2-ci.20260218T171144+sha.f7657cd33 335.27 KB Wed, 18 Feb 2026 17:12:03 GMT 16
11.0.0-preview.2-ci.20260218T114327+sha.ee0d48a3f 335.27 KB Wed, 18 Feb 2026 11:43:45 GMT 14
11.0.0-preview.2-ci.20260217T114905+sha.510dd65a0 335.28 KB Tue, 17 Feb 2026 11:49:30 GMT 15
11.0.0-preview.2-ci.20260216T203015+sha.4ba6551d4 335.27 KB Mon, 16 Feb 2026 20:30:35 GMT 14
11.0.0-preview.2-ci.20260216T161321+sha.f894de9f5 335.59 KB Mon, 16 Feb 2026 16:13:40 GMT 14
11.0.0-preview.2-ci.20260216T152547+sha.79fae3a76 335.59 KB Mon, 16 Feb 2026 15:26:07 GMT 13
11.0.0-preview.2-ci.20260216T152526+sha.3bd8fcb70 335.59 KB Mon, 16 Feb 2026 15:25:48 GMT 16
11.0.0-preview.2-ci.20260216T145341+sha.b07160303 335.59 KB Mon, 16 Feb 2026 14:53:59 GMT 16
11.0.0-preview.2-ci.20260216T140319+sha.ce7175325 335.59 KB Mon, 16 Feb 2026 14:03:40 GMT 14
11.0.0-preview.2-ci.20260216T133539+sha.6b2c2ca38 335.59 KB Mon, 16 Feb 2026 13:36:02 GMT 17
11.0.0-preview.2-ci.20260216T131130+sha.237f7fc13 335.59 KB Mon, 16 Feb 2026 13:11:50 GMT 15
11.0.0-preview.2-ci.20260216T130843+sha.6cccd2d31 335.58 KB Mon, 16 Feb 2026 13:09:01 GMT 13
11.0.0-preview.2-ci.20260216T124235+sha.3666c8b2f 335.6 KB Mon, 16 Feb 2026 12:42:55 GMT 13
11.0.0-preview.2-ci.20260216T100625+sha.066cbfed8 335.59 KB Mon, 16 Feb 2026 10:06:44 GMT 17
11.0.0-preview.2-ci.20260216T094227+sha.70a72bd36 335.59 KB Mon, 16 Feb 2026 09:42:47 GMT 17
11.0.0-preview.2-ci.20260216T094104+sha.036cc51c7 335.6 KB Mon, 16 Feb 2026 09:41:24 GMT 14