npgsql - Npgsql.EntityFrameworkCore.PostgreSQL 10.0.1-ci.20260222T132707+sha.7bae26552

PostgreSQL/Npgsql provider for Entity Framework Core.

PM> Install-Package Npgsql.EntityFrameworkCore.PostgreSQL -Version 10.0.1-ci.20260222T132707 -Source https://www.myget.org/F/npgsql/api/v3/index.json

Copy to clipboard

> nuget.exe install Npgsql.EntityFrameworkCore.PostgreSQL -Version 10.0.1-ci.20260222T132707 -Source https://www.myget.org/F/npgsql/api/v3/index.json

Copy to clipboard

> dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 10.0.1-ci.20260222T132707 --source https://www.myget.org/F/npgsql/api/v3/index.json

Copy to clipboard
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1-ci.20260222T132707" />
Copy to clipboard
source https://www.myget.org/F/npgsql/api/v3/index.json

nuget Npgsql.EntityFrameworkCore.PostgreSQL  ~> 10.0.1-ci.20260222T132707
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 10.0.1-ci.20260222T132707 --source https://www.myget.org/F/npgsql/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "npgsql" -SourceLocation "https://www.myget.org/F/npgsql/api/v2"
Install-Module -Name "Npgsql.EntityFrameworkCore.PostgreSQL" -RequiredVersion "10.0.1-ci.20260222T132707" -Repository "npgsql" -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/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 10.0
    • Microsoft.EntityFrameworkCore (>= 10.0.0 && < 11.0.0)
    • Microsoft.EntityFrameworkCore.Relational (>= 10.0.0 && < 11.0.0)
    • Npgsql (>= 10.0.0)
  • .NETFramework 10.0: 10.0.0.0

Owners

Shay Rojansky

Authors

Shay Rojansky, Austin Drenski, Yoh Deadfall

Project URL

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

License

MIT

Tags

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

Info

3976 total downloads
1 downloads for version 10.0.1-ci.20260222T132707+sha.7bae26552
Download (330.88 KB)
Download symbols (93.76 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
10.0.1-ci.20260304T224947+sha.be797de9c 330.89 KB Wed, 04 Mar 2026 22:50:23 GMT 0
10.0.1-ci.20260222T132707+sha.7bae26552 330.88 KB Sun, 22 Feb 2026 13:27:31 GMT 1
10.0.1-ci.20260220T082538+sha.87ead6eed 330.86 KB Fri, 20 Feb 2026 08:26:01 GMT 2
10.0.1-ci.20260207T080513+sha.253d4aeda 330.75 KB Sat, 07 Feb 2026 08:05:39 GMT 3
10.0.1-ci.20251122T174547+sha.b452d2bdc 330.7 KB Sat, 22 Nov 2025 17:46:17 GMT 13
9.0.5-ci.20260304T225552+sha.2d853f169 319.98 KB Wed, 04 Mar 2026 22:56:25 GMT 0
9.0.5-ci.20251225T095038+sha.663e31a94 319.99 KB Thu, 25 Dec 2025 09:51:05 GMT 11
9.0.5-ci.20251224T151708+sha.ccc800cb8 319.98 KB Wed, 24 Dec 2025 15:17:36 GMT 11
9.0.5-ci.20251224T135339+sha.e08bbd15f 319.99 KB Wed, 24 Dec 2025 13:54:19 GMT 7
9.0.5-ci.20251030T090032+sha.36d55089c 320.02 KB Thu, 30 Oct 2025 09:01:06 GMT 36
9.0.5-ci.20251018T222213+sha.536141b48 320.13 KB Sat, 18 Oct 2025 22:22:44 GMT 42
9.0.5-ci.20250829T064328+sha.d7b16983b 320.08 KB Fri, 29 Aug 2025 06:43:58 GMT 71
9.0.5-ci.20250630T090754+sha.5014ee69d 320.05 KB Mon, 30 Jun 2025 09:08:28 GMT 98
9.0.5-ci.20250319T191227+sha.8e9228752 320.08 KB Wed, 19 Mar 2025 19:12:53 GMT 124
9.0.5-ci.20250315T090334+sha.6b93c10c7 320.08 KB Sat, 15 Mar 2025 09:04:04 GMT 108
9.0.5-ci.20250304T103330+sha.43e8b0b22 320.09 KB Tue, 04 Mar 2025 10:34:02 GMT 110
9.0.5-ci.20250301T080602+sha.ef1ce4055 320.09 KB Sat, 01 Mar 2025 08:06:28 GMT 92
9.0.4-ci.20250301T075750+sha.fd2380957 320.1 KB Sat, 01 Mar 2025 07:58:19 GMT 100
9.0.4-ci.20250301T073717+sha.80ec4ae3c 320.09 KB Sat, 01 Mar 2025 07:37:42 GMT 103
9.0.4-ci.20250228T161508+sha.4bf32483b 320.06 KB Fri, 28 Feb 2025 16:15:29 GMT 109
9.0.4-ci.20250228T160807+sha.9f4b73139 320.08 KB Fri, 28 Feb 2025 16:08:33 GMT 109
9.0.4-ci.20250228T150521+sha.0fdf784b1 320.06 KB Fri, 28 Feb 2025 15:05:48 GMT 114
9.0.4-ci.20250215T175844+sha.6a3445557 320.01 KB Sat, 15 Feb 2025 17:59:15 GMT 108
9.0.4-ci.20250214T235248+sha.e952c8477 320 KB Fri, 14 Feb 2025 23:53:08 GMT 114
9.0.4-ci.20250127T172728+sha.badb51eb4 319.89 KB Mon, 27 Jan 2025 17:27:48 GMT 119
9.0.4-ci.20250117T181329+sha.e4a74e796 319.89 KB Fri, 17 Jan 2025 18:13:52 GMT 111
9.0.3-ci.20241228T162036+sha.c240ce588 319.52 KB Sat, 28 Dec 2024 16:20:55 GMT 123
9.0.3-ci.20241207T181506+sha.e5e901e32 319.48 KB Sat, 07 Dec 2024 18:15:27 GMT 127
9.0.2-ci.20241207T180802+sha.697dd7182 319.49 KB Sat, 07 Dec 2024 18:08:26 GMT 128
9.0.2-ci.20241120T194418+sha.17e2fc83c 319.48 KB Wed, 20 Nov 2024 19:44:38 GMT 99
9.0.2-ci.20241119T122358+sha.051d00cbb 319.49 KB Tue, 19 Nov 2024 12:24:20 GMT 107
9.0.1-ci.20241119T121501+sha.2e9a27fa9 319.48 KB Tue, 19 Nov 2024 12:15:24 GMT 111
9.0.1-ci.20241119T115818+sha.2e9a27fa9 319.48 KB Tue, 19 Nov 2024 11:58:39 GMT 99
9.0.1-ci.20241118T154406+sha.7aa8be018 319.47 KB Mon, 18 Nov 2024 15:44:29 GMT 104
8.0.12-ci.20251225T095104+sha.a9845a46d 302.2 KB Thu, 25 Dec 2025 09:51:32 GMT 10
8.0.12-ci.20251030T091541+sha.3bb31090c 302.21 KB Thu, 30 Oct 2025 09:16:16 GMT 33
8.0.12-ci.20251018T222414+sha.28dfd7c7e 302.25 KB Sat, 18 Oct 2025 22:24:47 GMT 38
8.0.12-ci.20250319T190729+sha.403ea21c7 302.17 KB Wed, 19 Mar 2025 19:08:00 GMT 119
8.0.12-ci.20250304T103742+sha.0e0fcfb05 302.17 KB Tue, 04 Mar 2025 10:38:12 GMT 88
8.0.12-ci.20250228T162027+sha.9c747fd54 302.17 KB Fri, 28 Feb 2025 16:20:53 GMT 107
8.0.12-ci.20250215T175819+sha.e46e43e01 302.15 KB Sat, 15 Feb 2025 17:58:39 GMT 89
8.0.12-ci.20250127T174018+sha.77493069e 302.15 KB Mon, 27 Jan 2025 17:41:07 GMT 92
8.0.12-ci.20241118T173708+sha.38b9ef7a1 302.16 KB Mon, 18 Nov 2024 17:37:38 GMT 90
8.0.11-ci.20241106T154257+sha.157ea2efb 302.15 KB Wed, 06 Nov 2024 15:43:27 GMT 105
8.0.11-ci.20241105T160321+sha.e38ff7bee 302.13 KB Tue, 05 Nov 2024 16:03:59 GMT 101
8.0.11-ci.20241105T125658+sha.eaafa4457 302.13 KB Tue, 05 Nov 2024 12:57:19 GMT 107
8.0.11-ci.20241031T151546+sha.57167f600 301.84 KB Thu, 31 Oct 2024 15:16:06 GMT 106
8.0.11-ci.20241031T112840+sha.8a2dc0c3c 301.77 KB Thu, 31 Oct 2024 11:29:12 GMT 93
8.0.11-ci.20241029T164005+sha.52e427f62 301.75 KB Tue, 29 Oct 2024 16:40:27 GMT 96
8.0.11-ci.20241017T183438+sha.15ce73ebc 301.72 KB Thu, 17 Oct 2024 18:35:07 GMT 88