npgsql - Npgsql.EntityFrameworkCore.PostgreSQL 8.0.11-ci.20241017T183438+sha.15ce73ebc

PostgreSQL/Npgsql provider for Entity Framework Core.

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

Copy to clipboard

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

Copy to clipboard

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

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

nuget Npgsql.EntityFrameworkCore.PostgreSQL  ~> 8.0.11-ci.20241017T183438
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 8.0.11-ci.20241017T183438 --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 "8.0.11-ci.20241017T183438" -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 8.0
    • Microsoft.EntityFrameworkCore (>= 8.0.10)
    • Microsoft.EntityFrameworkCore.Abstractions (>= 8.0.10)
    • Microsoft.EntityFrameworkCore.Relational (>= 8.0.10)
    • Npgsql (>= 8.0.5)
  • .NETFramework 8.0: 8.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

4206 total downloads
86 downloads for version 8.0.11-ci.20241017T183438+sha.15ce73ebc
Download (301.72 KB)
Download symbols (86.43 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
10.0.1-ci.20251122T174547+sha.b452d2bdc 330.7 KB Sat, 22 Nov 2025 17:46:17 GMT 9
9.0.5-ci.20251225T095038+sha.663e31a94 319.99 KB Thu, 25 Dec 2025 09:51:05 GMT 2
9.0.5-ci.20251224T151708+sha.ccc800cb8 319.98 KB Wed, 24 Dec 2025 15:17:36 GMT 2
9.0.5-ci.20251224T135339+sha.e08bbd15f 319.99 KB Wed, 24 Dec 2025 13:54:19 GMT 2
9.0.5-ci.20251030T090032+sha.36d55089c 320.02 KB Thu, 30 Oct 2025 09:01:06 GMT 33
9.0.5-ci.20251018T222213+sha.536141b48 320.13 KB Sat, 18 Oct 2025 22:22:44 GMT 38
9.0.5-ci.20250829T064328+sha.d7b16983b 320.08 KB Fri, 29 Aug 2025 06:43:58 GMT 67
9.0.5-ci.20250630T090754+sha.5014ee69d 320.05 KB Mon, 30 Jun 2025 09:08:28 GMT 94
9.0.5-ci.20250319T191227+sha.8e9228752 320.08 KB Wed, 19 Mar 2025 19:12:53 GMT 116
9.0.5-ci.20250315T090334+sha.6b93c10c7 320.08 KB Sat, 15 Mar 2025 09:04:04 GMT 103
9.0.5-ci.20250304T103330+sha.43e8b0b22 320.09 KB Tue, 04 Mar 2025 10:34:02 GMT 106
9.0.5-ci.20250301T080602+sha.ef1ce4055 320.09 KB Sat, 01 Mar 2025 08:06:28 GMT 88
9.0.4-ci.20250301T075750+sha.fd2380957 320.1 KB Sat, 01 Mar 2025 07:58:19 GMT 97
9.0.4-ci.20250301T073717+sha.80ec4ae3c 320.09 KB Sat, 01 Mar 2025 07:37:42 GMT 100
9.0.4-ci.20250228T161508+sha.4bf32483b 320.06 KB Fri, 28 Feb 2025 16:15:29 GMT 107
9.0.4-ci.20250228T160807+sha.9f4b73139 320.08 KB Fri, 28 Feb 2025 16:08:33 GMT 106
9.0.4-ci.20250228T150521+sha.0fdf784b1 320.06 KB Fri, 28 Feb 2025 15:05:48 GMT 111
9.0.4-ci.20250215T175844+sha.6a3445557 320.01 KB Sat, 15 Feb 2025 17:59:15 GMT 104
9.0.4-ci.20250214T235248+sha.e952c8477 320 KB Fri, 14 Feb 2025 23:53:08 GMT 102
9.0.4-ci.20250127T172728+sha.badb51eb4 319.89 KB Mon, 27 Jan 2025 17:27:48 GMT 115
9.0.4-ci.20250117T181329+sha.e4a74e796 319.89 KB Fri, 17 Jan 2025 18:13:52 GMT 108
9.0.3-ci.20241228T162036+sha.c240ce588 319.52 KB Sat, 28 Dec 2024 16:20:55 GMT 120
9.0.3-ci.20241207T181506+sha.e5e901e32 319.48 KB Sat, 07 Dec 2024 18:15:27 GMT 123
9.0.2-ci.20241207T180802+sha.697dd7182 319.49 KB Sat, 07 Dec 2024 18:08:26 GMT 122
9.0.2-ci.20241120T194418+sha.17e2fc83c 319.48 KB Wed, 20 Nov 2024 19:44:38 GMT 96
9.0.2-ci.20241119T122358+sha.051d00cbb 319.49 KB Tue, 19 Nov 2024 12:24:20 GMT 103
9.0.1-ci.20241119T121501+sha.2e9a27fa9 319.48 KB Tue, 19 Nov 2024 12:15:24 GMT 107
9.0.1-ci.20241119T115818+sha.2e9a27fa9 319.48 KB Tue, 19 Nov 2024 11:58:39 GMT 96
9.0.1-ci.20241118T154406+sha.7aa8be018 319.47 KB Mon, 18 Nov 2024 15:44:29 GMT 99
8.0.12-ci.20251225T095104+sha.a9845a46d 302.2 KB Thu, 25 Dec 2025 09:51:32 GMT 1
8.0.12-ci.20251030T091541+sha.3bb31090c 302.21 KB Thu, 30 Oct 2025 09:16:16 GMT 29
8.0.12-ci.20251018T222414+sha.28dfd7c7e 302.25 KB Sat, 18 Oct 2025 22:24:47 GMT 35
8.0.12-ci.20250319T190729+sha.403ea21c7 302.17 KB Wed, 19 Mar 2025 19:08:00 GMT 115
8.0.12-ci.20250304T103742+sha.0e0fcfb05 302.17 KB Tue, 04 Mar 2025 10:38:12 GMT 80
8.0.12-ci.20250228T162027+sha.9c747fd54 302.17 KB Fri, 28 Feb 2025 16:20:53 GMT 106
8.0.12-ci.20250215T175819+sha.e46e43e01 302.15 KB Sat, 15 Feb 2025 17:58:39 GMT 85
8.0.12-ci.20250127T174018+sha.77493069e 302.15 KB Mon, 27 Jan 2025 17:41:07 GMT 87
8.0.12-ci.20241118T173708+sha.38b9ef7a1 302.16 KB Mon, 18 Nov 2024 17:37:38 GMT 88
8.0.11-ci.20241106T154257+sha.157ea2efb 302.15 KB Wed, 06 Nov 2024 15:43:27 GMT 99
8.0.11-ci.20241105T160321+sha.e38ff7bee 302.13 KB Tue, 05 Nov 2024 16:03:59 GMT 96
8.0.11-ci.20241105T125658+sha.eaafa4457 302.13 KB Tue, 05 Nov 2024 12:57:19 GMT 102
8.0.11-ci.20241031T151546+sha.57167f600 301.84 KB Thu, 31 Oct 2024 15:16:06 GMT 102
8.0.11-ci.20241031T112840+sha.8a2dc0c3c 301.77 KB Thu, 31 Oct 2024 11:29:12 GMT 88
8.0.11-ci.20241029T164005+sha.52e427f62 301.75 KB Tue, 29 Oct 2024 16:40:27 GMT 87
8.0.11-ci.20241017T183438+sha.15ce73ebc 301.72 KB Thu, 17 Oct 2024 18:35:07 GMT 86
8.0.8-ci.20240926T223439+sha.55dd99eca 301.7 KB Thu, 26 Sep 2024 22:35:07 GMT 84
8.0.5-ci.20240628T141536+sha.aec0d1f72 301.7 KB Fri, 28 Jun 2024 14:16:05 GMT 83
8.0.5-ci.20240623T224824+sha.8a4c25b3a 301.58 KB Sun, 23 Jun 2024 22:48:45 GMT 80
8.0.5-ci.20240608T214859+sha.1292512a4 301.38 KB Sat, 08 Jun 2024 21:49:21 GMT 94
8.0.5-ci.20240511T161926+sha.a2ce3ee08 301.44 KB Sat, 11 May 2024 16:19:51 GMT 103