npgsql - Npgsql.EntityFrameworkCore.PostgreSQL 8.0.12-ci.20250215T175819+sha.e46e43e01

PostgreSQL/Npgsql provider for Entity Framework Core.

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

Copy to clipboard

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

Copy to clipboard

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

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

nuget Npgsql.EntityFrameworkCore.PostgreSQL  ~> 8.0.12-ci.20250215T175819
Copy to clipboard

> choco install Npgsql.EntityFrameworkCore.PostgreSQL --version 8.0.12-ci.20250215T175819 --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.12-ci.20250215T175819" -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.11)
    • Microsoft.EntityFrameworkCore.Abstractions (>= 8.0.11)
    • Microsoft.EntityFrameworkCore.Relational (>= 8.0.11)
    • Npgsql (>= 8.0.6)
  • .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

237 total downloads
2 downloads for version 8.0.12-ci.20250215T175819+sha.e46e43e01
Download (302.15 KB)
Download symbols (86.49 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
9.0.5-ci.20250319T191227+sha.8e9228752 320.08 KB Wed, 19 Mar 2025 19:12:53 GMT 0
9.0.5-ci.20250315T090334+sha.6b93c10c7 320.08 KB Sat, 15 Mar 2025 09:04:04 GMT 1
9.0.5-ci.20250304T103330+sha.43e8b0b22 320.09 KB Tue, 04 Mar 2025 10:34:02 GMT 1
9.0.5-ci.20250301T080602+sha.ef1ce4055 320.09 KB Sat, 01 Mar 2025 08:06:28 GMT 2
9.0.4-ci.20250301T075750+sha.fd2380957 320.1 KB Sat, 01 Mar 2025 07:58:19 GMT 2
9.0.4-ci.20250301T073717+sha.80ec4ae3c 320.09 KB Sat, 01 Mar 2025 07:37:42 GMT 2
9.0.4-ci.20250228T161508+sha.4bf32483b 320.06 KB Fri, 28 Feb 2025 16:15:29 GMT 2
9.0.4-ci.20250228T160807+sha.9f4b73139 320.08 KB Fri, 28 Feb 2025 16:08:33 GMT 1
9.0.4-ci.20250228T150521+sha.0fdf784b1 320.06 KB Fri, 28 Feb 2025 15:05:48 GMT 2
9.0.4-ci.20250215T175844+sha.6a3445557 320.01 KB Sat, 15 Feb 2025 17:59:15 GMT 2
9.0.4-ci.20250214T235248+sha.e952c8477 320 KB Fri, 14 Feb 2025 23:53:08 GMT 2
9.0.4-ci.20250127T172728+sha.badb51eb4 319.89 KB Mon, 27 Jan 2025 17:27:48 GMT 3
9.0.4-ci.20250117T181329+sha.e4a74e796 319.89 KB Fri, 17 Jan 2025 18:13:52 GMT 2
9.0.3-ci.20241228T162036+sha.c240ce588 319.52 KB Sat, 28 Dec 2024 16:20:55 GMT 3
9.0.3-ci.20241207T181506+sha.e5e901e32 319.48 KB Sat, 07 Dec 2024 18:15:27 GMT 3
9.0.2-ci.20241207T180802+sha.697dd7182 319.49 KB Sat, 07 Dec 2024 18:08:26 GMT 4
9.0.2-ci.20241120T194418+sha.17e2fc83c 319.48 KB Wed, 20 Nov 2024 19:44:38 GMT 4
9.0.2-ci.20241119T122358+sha.051d00cbb 319.49 KB Tue, 19 Nov 2024 12:24:20 GMT 4
9.0.1-ci.20241119T121501+sha.2e9a27fa9 319.48 KB Tue, 19 Nov 2024 12:15:24 GMT 4
9.0.1-ci.20241119T115818+sha.2e9a27fa9 319.48 KB Tue, 19 Nov 2024 11:58:39 GMT 3
9.0.1-ci.20241118T154406+sha.7aa8be018 319.47 KB Mon, 18 Nov 2024 15:44:29 GMT 4
8.0.12-ci.20250319T190729+sha.403ea21c7 302.17 KB Wed, 19 Mar 2025 19:08:00 GMT 0
8.0.12-ci.20250304T103742+sha.0e0fcfb05 302.17 KB Tue, 04 Mar 2025 10:38:12 GMT 1
8.0.12-ci.20250228T162027+sha.9c747fd54 302.17 KB Fri, 28 Feb 2025 16:20:53 GMT 2
8.0.12-ci.20250215T175819+sha.e46e43e01 302.15 KB Sat, 15 Feb 2025 17:58:39 GMT 2
8.0.12-ci.20250127T174018+sha.77493069e 302.15 KB Mon, 27 Jan 2025 17:41:07 GMT 2
8.0.12-ci.20241118T173708+sha.38b9ef7a1 302.16 KB Mon, 18 Nov 2024 17:37:38 GMT 4
8.0.11-ci.20241106T154257+sha.157ea2efb 302.15 KB Wed, 06 Nov 2024 15:43:27 GMT 5
8.0.11-ci.20241105T160321+sha.e38ff7bee 302.13 KB Tue, 05 Nov 2024 16:03:59 GMT 4
8.0.11-ci.20241105T125658+sha.eaafa4457 302.13 KB Tue, 05 Nov 2024 12:57:19 GMT 3
8.0.11-ci.20241031T151546+sha.57167f600 301.84 KB Thu, 31 Oct 2024 15:16:06 GMT 5
8.0.11-ci.20241031T112840+sha.8a2dc0c3c 301.77 KB Thu, 31 Oct 2024 11:29:12 GMT 4
8.0.11-ci.20241029T164005+sha.52e427f62 301.75 KB Tue, 29 Oct 2024 16:40:27 GMT 4
8.0.11-ci.20241017T183438+sha.15ce73ebc 301.72 KB Thu, 17 Oct 2024 18:35:07 GMT 4
8.0.8-ci.20240926T223439+sha.55dd99eca 301.7 KB Thu, 26 Sep 2024 22:35:07 GMT 4
8.0.5-ci.20240628T141536+sha.aec0d1f72 301.7 KB Fri, 28 Jun 2024 14:16:05 GMT 8
8.0.5-ci.20240623T224824+sha.8a4c25b3a 301.58 KB Sun, 23 Jun 2024 22:48:45 GMT 9
8.0.5-ci.20240608T214859+sha.1292512a4 301.38 KB Sat, 08 Jun 2024 21:49:21 GMT 7
8.0.5-ci.20240511T161926+sha.a2ce3ee08 301.44 KB Sat, 11 May 2024 16:19:51 GMT 6
8.0.4-ci.20240511T154954+sha.51faf6e9c 301.44 KB Sat, 11 May 2024 15:50:21 GMT 7
8.0.3-ci.20240225T001127+sha.f280bb70e 301.4 KB Sun, 25 Feb 2024 00:11:56 GMT 9
8.0.3-ci.20240217T202149+sha.468c8be1f 301.47 KB Sat, 17 Feb 2024 20:22:15 GMT 11
8.0.1-ci.20240105T091620+sha.bbcdde68d 301.5 KB Fri, 05 Jan 2024 09:16:51 GMT 13
8.0.1-ci.20231223T160849+sha.c698389be 301.48 KB Sat, 23 Dec 2023 16:09:13 GMT 9
8.0.1-ci.20231219T144823+sha.f958e9a34 301.23 KB Tue, 19 Dec 2023 14:48:48 GMT 10
8.0.1-ci.20231218T120307+sha.baaf41f4b 301.23 KB Mon, 18 Dec 2023 12:03:35 GMT 11
8.0.1-ci.20231218T103437+sha.557e16689 301.13 KB Mon, 18 Dec 2023 10:35:02 GMT 10
8.0.1-ci.20231217T054650+sha.07f00f88b 300.43 KB Sun, 17 Dec 2023 05:47:19 GMT 11
8.0.1-ci.20231217T053909+sha.b7d1ff4b2 300.42 KB Sun, 17 Dec 2023 05:39:40 GMT 10
8.0.1-ci.20231211T103621+sha.60a157326 300.45 KB Mon, 11 Dec 2023 10:36:46 GMT 11