npgsql-vnext - Npgsql.EntityFrameworkCore.PostgreSQL 11.0.0-preview.7-ci.20260723T172943+sha.c715cff1b

PostgreSQL/Npgsql provider for Entity Framework Core.

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

nuget Npgsql.EntityFrameworkCore.PostgreSQL  ~> 11.0.0-preview.7-ci.20260723T172943
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 11.0.0-preview.7-ci.20260723T172943 --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.7-ci.20260723T172943" -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.7.26324.112)
    • Microsoft.EntityFrameworkCore.Relational (= 11.0.0-preview.7.26324.112)
    • Npgsql (>= 10.0.3)
  • .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

1371 total downloads
15 downloads for version 11.0.0-preview.7-ci.20260723T172943+sha.c715cff1b
Download (339.47 KB)
Download symbols (96.58 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
11.0.0-preview.7-ci.20260723T172943+sha.c715cff1b 339.47 KB Thu, 23 Jul 2026 17:30:00 GMT 15
11.0.0-preview.7-ci.20260723T004828+sha.88629d35d 339.47 KB Thu, 23 Jul 2026 00:48:51 GMT 13
11.0.0-preview.7-ci.20260723T000644+sha.b48574158 339.43 KB Thu, 23 Jul 2026 00:07:06 GMT 15
11.0.0-preview.7-ci.20260722T234344+sha.6cb59bb73 339.43 KB Wed, 22 Jul 2026 23:44:06 GMT 14
11.0.0-preview.7-ci.20260715T165912+sha.d360bb568 339.43 KB Wed, 15 Jul 2026 16:59:40 GMT 14
11.0.0-preview.6-ci.20260715T092238+sha.13a2801dd 339.51 KB Wed, 15 Jul 2026 09:22:58 GMT 16
11.0.0-preview.6-ci.20260710T092743+sha.b187e4594 339.5 KB Fri, 10 Jul 2026 09:28:03 GMT 16
11.0.0-preview.6-ci.20260710T085635+sha.affe2c7a6 339.51 KB Fri, 10 Jul 2026 08:57:00 GMT 21
11.0.0-preview.6-ci.20260702T102809+sha.60f659363 339.49 KB Thu, 02 Jul 2026 10:28:28 GMT 17
11.0.0-preview.6-ci.20260702T102146+sha.58bf0ae95 339.5 KB Thu, 02 Jul 2026 10:22:09 GMT 17
11.0.0-preview.6-ci.20260629T133732+sha.665780c53 339.51 KB Mon, 29 Jun 2026 13:37:48 GMT 23
11.0.0-preview.6-ci.20260627T094528+sha.4d8eb6ea6 339.54 KB Sat, 27 Jun 2026 09:45:50 GMT 19
11.0.0-preview.6-ci.20260622T095640+sha.58fa2cadd 339.55 KB Mon, 22 Jun 2026 09:56:59 GMT 25
11.0.0-preview.6-ci.20260618T081217+sha.f2d7aa98d 339.55 KB Thu, 18 Jun 2026 08:12:38 GMT 24
11.0.0-preview.6-ci.20260615T112140+sha.5a74e4800 339.54 KB Mon, 15 Jun 2026 11:22:01 GMT 23
11.0.0-preview.5-ci.20260612T094820+sha.1d79a7f68 339.5 KB Fri, 12 Jun 2026 09:48:40 GMT 24
11.0.0-preview.5-ci.20260612T094805+sha.d7c353626 338.9 KB Fri, 12 Jun 2026 09:48:30 GMT 22
11.0.0-preview.5-ci.20260612T092616+sha.bd22934ad 338.91 KB Fri, 12 Jun 2026 09:26:37 GMT 22
11.0.0-preview.5-ci.20260612T091512+sha.933ce2d08 338.91 KB Fri, 12 Jun 2026 09:15:32 GMT 23
11.0.0-preview.5-ci.20260602T170258+sha.5f950830b 338.91 KB Tue, 02 Jun 2026 17:03:19 GMT 20
11.0.0-preview.5-ci.20260601T201629+sha.b8bbb5ab5 338.42 KB Mon, 01 Jun 2026 20:17:03 GMT 24
11.0.0-preview.5-ci.20260527T161455+sha.acd7a141a 338.44 KB Wed, 27 May 2026 16:15:17 GMT 18
11.0.0-preview.5-ci.20260527T102932+sha.4018d8371 338.44 KB Wed, 27 May 2026 10:29:53 GMT 20
11.0.0-preview.5-ci.20260527T102756+sha.fb6fd3810 338.43 KB Wed, 27 May 2026 10:28:15 GMT 22
11.0.0-preview.5-ci.20260525T233815+sha.3ddc83c01 338.42 KB Mon, 25 May 2026 23:38:41 GMT 21
11.0.0-preview.5-ci.20260518T080619+sha.954883216 338.35 KB Mon, 18 May 2026 08:06:45 GMT 23
11.0.0-preview.5-ci.20260517T093256+sha.3424f66c5 338.35 KB Sun, 17 May 2026 09:33:28 GMT 31
11.0.0-preview.5-ci.20260430T230608+sha.dda4c3242 338.31 KB Thu, 30 Apr 2026 23:08:00 GMT 34
11.0.0-preview.5-ci.20260428T094605+sha.01966c19b 338.31 KB Tue, 28 Apr 2026 09:46:35 GMT 26
11.0.0-preview.5-ci.20260428T090022+sha.4e4c6a430 338.31 KB Tue, 28 Apr 2026 09:00:44 GMT 25
11.0.0-preview.4-ci.20260428T085825+sha.2d9167453 338.31 KB Tue, 28 Apr 2026 08:58:46 GMT 30
11.0.0-preview.4-ci.20260426T113032+sha.a964a6352 338.31 KB Sun, 26 Apr 2026 11:30:53 GMT 32
11.0.0-preview.4-ci.20260420T081730+sha.b2dce20e1 338.29 KB Mon, 20 Apr 2026 08:17:52 GMT 29
11.0.0-preview.4-ci.20260420T070857+sha.640371757 338.54 KB Mon, 20 Apr 2026 07:09:21 GMT 27
11.0.0-preview.4-ci.20260413T101034+sha.b3b562e36 338.54 KB Mon, 13 Apr 2026 10:10:55 GMT 34
11.0.0-preview.3-ci.20260406T080708+sha.1236e55bf 338.48 KB Mon, 06 Apr 2026 08:07:32 GMT 39
11.0.0-preview.3-ci.20260406T075807+sha.a2e2b934a 338.47 KB Mon, 06 Apr 2026 07:58:26 GMT 37
11.0.0-preview.3-ci.20260331T090428+sha.9119f83bb 338.41 KB Tue, 31 Mar 2026 09:04:45 GMT 37
11.0.0-preview.3-ci.20260331T074742+sha.865e1088e 338.4 KB Tue, 31 Mar 2026 07:48:30 GMT 36
11.0.0-preview.3-ci.20260331T071449+sha.6bba43fbe 338.4 KB Tue, 31 Mar 2026 07:15:54 GMT 33
11.0.0-preview.3-ci.20260325T152933+sha.db5d68e71 338.39 KB Wed, 25 Mar 2026 15:29:53 GMT 34
11.0.0-preview.3-ci.20260324T193322+sha.fbd8aabd7 338.39 KB Tue, 24 Mar 2026 19:33:43 GMT 39
11.0.0-preview.3-ci.20260323T123819+sha.fd2607584 338.4 KB Mon, 23 Mar 2026 12:38:39 GMT 38
11.0.0-preview.3-ci.20260311T160757+sha.882059d59 338.39 KB Wed, 11 Mar 2026 16:08:19 GMT 41
11.0.0-preview.3-ci.20260310T111832+sha.1a4ff35f8 338.38 KB Tue, 10 Mar 2026 11:18:52 GMT 42
11.0.0-preview.3-ci.20260305T101740+sha.9147a7e81 338.18 KB Thu, 05 Mar 2026 10:18:09 GMT 46
11.0.0-preview.2-ci.20260305T101729+sha.3e04f93a1 338.19 KB Thu, 05 Mar 2026 10:17:50 GMT 41
11.0.0-preview.2-ci.20260305T100817+sha.cd9db0f1d 338.18 KB Thu, 05 Mar 2026 10:08:38 GMT 37
11.0.0-preview.2-ci.20260305T100737+sha.3e04f93a1 338.18 KB Thu, 05 Mar 2026 10:07:59 GMT 40
11.0.0-preview.2-ci.20260305T091411+sha.10009c214 338.17 KB Thu, 05 Mar 2026 09:14:33 GMT 52