npgsql-vnext - Npgsql.EntityFrameworkCore.PostgreSQL 11.0.0-preview.3-ci.20260305T101740+sha.9147a7e81

PostgreSQL/Npgsql provider for Entity Framework Core.

PM> Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 11.0.0-preview.3-ci.20260305T101740 -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.3-ci.20260305T101740 -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.3-ci.20260305T101740 --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.3-ci.20260305T101740" />
Copy to clipboard
source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

nuget Npgsql.EntityFrameworkCore.PostgreSQL  ~> 11.0.0-preview.3-ci.20260305T101740
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 11.0.0-preview.3-ci.20260305T101740 --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.3-ci.20260305T101740" -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.26154.117)
    • Microsoft.EntityFrameworkCore.Relational (= 11.0.0-preview.2.26154.117)
    • 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

607 total downloads
22 downloads for version 11.0.0-preview.3-ci.20260305T101740+sha.9147a7e81
Download (338.18 KB)
Download symbols (95.99 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
11.0.0-preview.6-ci.20260615T112140+sha.5a74e4800 339.54 KB Mon, 15 Jun 2026 11:22:01 GMT 0
11.0.0-preview.5-ci.20260612T094820+sha.1d79a7f68 339.5 KB Fri, 12 Jun 2026 09:48:40 GMT 0
11.0.0-preview.5-ci.20260612T094805+sha.d7c353626 338.9 KB Fri, 12 Jun 2026 09:48:30 GMT 1
11.0.0-preview.5-ci.20260612T092616+sha.bd22934ad 338.91 KB Fri, 12 Jun 2026 09:26:37 GMT 0
11.0.0-preview.5-ci.20260612T091512+sha.933ce2d08 338.91 KB Fri, 12 Jun 2026 09:15:32 GMT 0
11.0.0-preview.5-ci.20260602T170258+sha.5f950830b 338.91 KB Tue, 02 Jun 2026 17:03:19 GMT 0
11.0.0-preview.5-ci.20260601T201629+sha.b8bbb5ab5 338.42 KB Mon, 01 Jun 2026 20:17:03 GMT 0
11.0.0-preview.5-ci.20260527T161455+sha.acd7a141a 338.44 KB Wed, 27 May 2026 16:15:17 GMT 0
11.0.0-preview.5-ci.20260527T102932+sha.4018d8371 338.44 KB Wed, 27 May 2026 10:29:53 GMT 1
11.0.0-preview.5-ci.20260527T102756+sha.fb6fd3810 338.43 KB Wed, 27 May 2026 10:28:15 GMT 2
11.0.0-preview.5-ci.20260525T233815+sha.3ddc83c01 338.42 KB Mon, 25 May 2026 23:38:41 GMT 0
11.0.0-preview.5-ci.20260518T080619+sha.954883216 338.35 KB Mon, 18 May 2026 08:06:45 GMT 2
11.0.0-preview.5-ci.20260517T093256+sha.3424f66c5 338.35 KB Sun, 17 May 2026 09:33:28 GMT 7
11.0.0-preview.5-ci.20260430T230608+sha.dda4c3242 338.31 KB Thu, 30 Apr 2026 23:08:00 GMT 9
11.0.0-preview.5-ci.20260428T094605+sha.01966c19b 338.31 KB Tue, 28 Apr 2026 09:46:35 GMT 6
11.0.0-preview.5-ci.20260428T090022+sha.4e4c6a430 338.31 KB Tue, 28 Apr 2026 09:00:44 GMT 7
11.0.0-preview.4-ci.20260428T085825+sha.2d9167453 338.31 KB Tue, 28 Apr 2026 08:58:46 GMT 9
11.0.0-preview.4-ci.20260426T113032+sha.a964a6352 338.31 KB Sun, 26 Apr 2026 11:30:53 GMT 8
11.0.0-preview.4-ci.20260420T081730+sha.b2dce20e1 338.29 KB Mon, 20 Apr 2026 08:17:52 GMT 7
11.0.0-preview.4-ci.20260420T070857+sha.640371757 338.54 KB Mon, 20 Apr 2026 07:09:21 GMT 9
11.0.0-preview.4-ci.20260413T101034+sha.b3b562e36 338.54 KB Mon, 13 Apr 2026 10:10:55 GMT 13
11.0.0-preview.3-ci.20260406T080708+sha.1236e55bf 338.48 KB Mon, 06 Apr 2026 08:07:32 GMT 12
11.0.0-preview.3-ci.20260406T075807+sha.a2e2b934a 338.47 KB Mon, 06 Apr 2026 07:58:26 GMT 14
11.0.0-preview.3-ci.20260331T090428+sha.9119f83bb 338.41 KB Tue, 31 Mar 2026 09:04:45 GMT 16
11.0.0-preview.3-ci.20260331T074742+sha.865e1088e 338.4 KB Tue, 31 Mar 2026 07:48:30 GMT 15
11.0.0-preview.3-ci.20260331T071449+sha.6bba43fbe 338.4 KB Tue, 31 Mar 2026 07:15:54 GMT 13
11.0.0-preview.3-ci.20260325T152933+sha.db5d68e71 338.39 KB Wed, 25 Mar 2026 15:29:53 GMT 14
11.0.0-preview.3-ci.20260324T193322+sha.fbd8aabd7 338.39 KB Tue, 24 Mar 2026 19:33:43 GMT 16
11.0.0-preview.3-ci.20260323T123819+sha.fd2607584 338.4 KB Mon, 23 Mar 2026 12:38:39 GMT 16
11.0.0-preview.3-ci.20260311T160757+sha.882059d59 338.39 KB Wed, 11 Mar 2026 16:08:19 GMT 18
11.0.0-preview.3-ci.20260310T111832+sha.1a4ff35f8 338.38 KB Tue, 10 Mar 2026 11:18:52 GMT 18
11.0.0-preview.3-ci.20260305T101740+sha.9147a7e81 338.18 KB Thu, 05 Mar 2026 10:18:09 GMT 22
11.0.0-preview.2-ci.20260305T101729+sha.3e04f93a1 338.19 KB Thu, 05 Mar 2026 10:17:50 GMT 18
11.0.0-preview.2-ci.20260305T100817+sha.cd9db0f1d 338.18 KB Thu, 05 Mar 2026 10:08:38 GMT 16
11.0.0-preview.2-ci.20260305T100737+sha.3e04f93a1 338.18 KB Thu, 05 Mar 2026 10:07:59 GMT 16
11.0.0-preview.2-ci.20260305T091411+sha.10009c214 338.17 KB Thu, 05 Mar 2026 09:14:33 GMT 20
11.0.0-preview.2-ci.20260304T224844+sha.827755553 338.17 KB Wed, 04 Mar 2026 22:49:05 GMT 19
11.0.0-preview.2-ci.20260303T100352+sha.97525ad31 338.19 KB Tue, 03 Mar 2026 10:04:19 GMT 26
11.0.0-preview.2-ci.20260225T151131+sha.7c3cdb2d4 338.17 KB Wed, 25 Feb 2026 15:11:52 GMT 16
11.0.0-preview.2-ci.20260225T144646+sha.d0382593a 338.16 KB Wed, 25 Feb 2026 14:47:08 GMT 22
11.0.0-preview.2-ci.20260225T135425+sha.75c2ea9a3 338.17 KB Wed, 25 Feb 2026 13:55:05 GMT 22
11.0.0-preview.2-ci.20260225T135303+sha.0c06083ce 338.17 KB Wed, 25 Feb 2026 13:53:21 GMT 25
11.0.0-preview.2-ci.20260225T133707+sha.705a2ea14 338.18 KB Wed, 25 Feb 2026 13:37:30 GMT 20
11.0.0-preview.2-ci.20260225T093330+sha.9493cfc6a 338.18 KB Wed, 25 Feb 2026 09:33:52 GMT 18
11.0.0-preview.2-ci.20260222T131616+sha.e9528b4c4 338.17 KB Sun, 22 Feb 2026 13:16:35 GMT 16
11.0.0-preview.2-ci.20260222T125118+sha.86c777b65 338.16 KB Sun, 22 Feb 2026 12:51:38 GMT 24
11.0.0-preview.2-ci.20260220T111850+sha.83627a48f 335.37 KB Fri, 20 Feb 2026 11:19:12 GMT 16
11.0.0-preview.2-ci.20260220T082524+sha.7b0887fa6 335.36 KB Fri, 20 Feb 2026 08:25:45 GMT 21
11.0.0-preview.2-ci.20260218T171144+sha.f7657cd33 335.27 KB Wed, 18 Feb 2026 17:12:03 GMT 20
11.0.0-preview.2-ci.20260218T114327+sha.ee0d48a3f 335.27 KB Wed, 18 Feb 2026 11:43:45 GMT 17