npgsql - Npgsql 9.0.5-ci.20251029T164033+sha.22edc2368

Npgsql is the open source .NET data provider for PostgreSQL.

PM> Install-Package Npgsql -Version 9.0.5-ci.20251029T164033 -Source https://www.myget.org/F/npgsql/api/v3/index.json

Copy to clipboard

> nuget.exe install Npgsql -Version 9.0.5-ci.20251029T164033 -Source https://www.myget.org/F/npgsql/api/v3/index.json

Copy to clipboard

> dotnet add package Npgsql --version 9.0.5-ci.20251029T164033 --source https://www.myget.org/F/npgsql/api/v3/index.json

Copy to clipboard
<PackageReference Include="Npgsql" Version="9.0.5-ci.20251029T164033" />
Copy to clipboard
source https://www.myget.org/F/npgsql/api/v3/index.json

nuget Npgsql  ~> 9.0.5-ci.20251029T164033
Copy to clipboard

> choco install Npgsql --version 9.0.5-ci.20251029T164033 --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" -RequiredVersion "9.0.5-ci.20251029T164033" -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 - the .NET data provider for PostgreSQL

stable next patch daily builds (vnext) build gitter

What is Npgsql?

Npgsql is the open source .NET data provider for PostgreSQL. It allows you to connect and interact with PostgreSQL server using .NET.

For the full documentation, please visit the Npgsql website. For the Entity Framework Core provider that works with this provider, see Npgsql.EntityFrameworkCore.PostgreSQL.

Quickstart

Here's a basic code snippet to get you started:

using Npgsql;

var connString = "Host=myserver;Username=mylogin;Password=mypass;Database=mydatabase";

var dataSourceBuilder = new NpgsqlDataSourceBuilder(connString);
var dataSource = dataSourceBuilder.Build();

var conn = await dataSource.OpenConnectionAsync();

// Insert some data
await using (var cmd = new NpgsqlCommand("INSERT INTO data (some_field) VALUES (@p)", conn))
{
    cmd.Parameters.AddWithValue("p", "Hello world");
    await cmd.ExecuteNonQueryAsync();
}

// Retrieve all rows
await using (var cmd = new NpgsqlCommand("SELECT some_field FROM data", conn))
await using (var reader = await cmd.ExecuteReaderAsync())
{
    while (await reader.ReadAsync())
        Console.WriteLine(reader.GetString(0));
}

Key features

  • High-performance PostgreSQL driver. Regularly figures in the top contenders on the TechEmpower Web Framework Benchmarks.
  • Full support of most PostgreSQL types, including advanced ones such as arrays, enums, ranges, multiranges, composites, JSON, PostGIS and others.
  • Highly-efficient bulk import/export API.
  • Failover, load balancing and general multi-host support.
  • Great integration with Entity Framework Core via Npgsql.EntityFrameworkCore.PostgreSQL.

For the full documentation, please visit the Npgsql website at https://www.npgsql.org.

  • .NETFramework 6.0
    • Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
    • System.Diagnostics.DiagnosticSource (>= 8.0.1)
    • System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
    • System.Text.Json (>= 8.0.5)
  • .NETFramework 8.0
    • Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
  • .NETFramework 6.0: 6.0.0.0
  • .NETFramework 8.0: 8.0.0.0

Owners

Shay Rojansky

Authors

Shay Rojansky, Nikita Kazmin, Brar Piening, Nino Floris, Yoh Deadfall, Austin Drenski, Emil Lenngren, Francisco Figueiredo Jr., Kenji Uno

Project URL

https://github.com/npgsql/npgsql

License

MIT

Tags

npgsql postgresql postgres ado ado.net database sql

Info

3007 total downloads
1 downloads for version 9.0.5-ci.20251029T164033+sha.22edc2368
Download (1.14 MB)
Download symbols (349.55 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
9.0.5-ci.20251029T164033+sha.22edc2368 1.14 MB Wed, 29 Oct 2025 16:41:25 GMT 1
9.0.5-ci.20251029T151033+sha.cd9a7ab9f 1.14 MB Wed, 29 Oct 2025 15:11:21 GMT 3
9.0.5-ci.20251027T211008+sha.0d526a369 1.14 MB Mon, 27 Oct 2025 21:10:51 GMT 5
9.0.5-ci.20251015T134601+sha.5dfd2e480 1.14 MB Wed, 15 Oct 2025 13:46:43 GMT 16
9.0.5-ci.20251015T132741+sha.3fb85417f 1.14 MB Wed, 15 Oct 2025 13:28:18 GMT 18
9.0.5-ci.20251005T193958+sha.88b6bb211 1.14 MB Sun, 05 Oct 2025 19:40:47 GMT 16
9.0.4-ci.20251005T190702+sha.c7bb8bcb9 1.14 MB Sun, 05 Oct 2025 19:07:51 GMT 24
9.0.4-ci.20251005T190604+sha.3b6c74c50 1.14 MB Sun, 05 Oct 2025 19:06:47 GMT 20
9.0.4-ci.20250910T114117+sha.4d7d09fd5 1.14 MB Wed, 10 Sep 2025 11:42:04 GMT 56
9.0.4-ci.20250820T095924+sha.e2b6731db 1.14 MB Wed, 20 Aug 2025 10:00:10 GMT 54
9.0.4-ci.20250804T141834+sha.48ef26646 1.14 MB Mon, 04 Aug 2025 14:19:11 GMT 57
9.0.4-ci.20250704T144742+sha.8aa2ce82e 1.14 MB Fri, 04 Jul 2025 14:48:32 GMT 78
9.0.4-ci.20250623T121118+sha.f5df84025 1.14 MB Mon, 23 Jun 2025 12:11:58 GMT 69
9.0.4-ci.20250620T103018+sha.9b9ca5533 1.14 MB Fri, 20 Jun 2025 10:30:55 GMT 72
9.0.4-ci.20250603T083114+sha.9b2b2bcb8 1.14 MB Tue, 03 Jun 2025 08:31:53 GMT 73
9.0.4-ci.20250601T105914+sha.7a007d9d0 1.14 MB Sun, 01 Jun 2025 10:59:57 GMT 76
9.0.4-ci.20250507T105834+sha.308a1f352 1.14 MB Wed, 07 May 2025 10:59:16 GMT 90
9.0.4-ci.20250319T161406+sha.1b99186d9 1.14 MB Wed, 19 Mar 2025 16:14:55 GMT 89
9.0.4-ci.20250304T085641+sha.ded0c27d8 1.14 MB Tue, 04 Mar 2025 08:57:27 GMT 94
9.0.4-ci.20250224T214703+sha.899e2bb3a 1.14 MB Mon, 24 Feb 2025 21:47:39 GMT 77
9.0.3-ci.20250224T113229+sha.97dc1739c 1.14 MB Mon, 24 Feb 2025 11:33:13 GMT 82
9.0.3-ci.20250221T103654+sha.94d0a14da 1.14 MB Fri, 21 Feb 2025 10:37:41 GMT 78
9.0.3-ci.20250204T115318+sha.10cf87c5b 1.14 MB Tue, 04 Feb 2025 11:53:53 GMT 74
9.0.3-ci.20250204T114534+sha.7f241f2c4 1.14 MB Tue, 04 Feb 2025 11:46:17 GMT 83
9.0.3-ci.20241207T095601+sha.bf7937987 1.14 MB Sat, 07 Dec 2024 09:56:34 GMT 94
9.0.2-ci.20241120T173808+sha.47ee78b7b 1.14 MB Wed, 20 Nov 2024 17:38:50 GMT 86
9.0.2-ci.20241119T111622+sha.562ca36a7 1.14 MB Tue, 19 Nov 2024 11:17:01 GMT 86
9.0.1-ci.20241119T110536+sha.7fa93656c 1.14 MB Tue, 19 Nov 2024 11:06:14 GMT 71
9.0.1-ci.20241118T150756+sha.50300f572 1.14 MB Mon, 18 Nov 2024 15:08:34 GMT 90
8.0.9-ci.20251015T135036+sha.b73232282 2.75 MB Wed, 15 Oct 2025 13:51:32 GMT 13
8.0.9-ci.20251015T134049+sha.4b2b90974 2.75 MB Wed, 15 Oct 2025 13:42:13 GMT 18
8.0.9-ci.20251005T194331+sha.03e95a8f5 2.75 MB Sun, 05 Oct 2025 19:44:34 GMT 24
8.0.8-ci.20251005T191012+sha.43e15ee3b 2.75 MB Sun, 05 Oct 2025 19:11:15 GMT 13
8.0.8-ci.20250910T114502+sha.1ae276333 2.75 MB Wed, 10 Sep 2025 11:46:07 GMT 25
8.0.8-ci.20250820T100039+sha.278100030 2.75 MB Wed, 20 Aug 2025 10:01:43 GMT 50
8.0.8-ci.20250804T142246+sha.223d4256d 2.75 MB Mon, 04 Aug 2025 14:23:56 GMT 45
8.0.8-ci.20250620T103215+sha.009a7d9a8 2.75 MB Fri, 20 Jun 2025 10:33:14 GMT 69
8.0.8-ci.20250603T085609+sha.e247566bc 2.75 MB Tue, 03 Jun 2025 08:57:09 GMT 60
8.0.8-ci.20250507T110251+sha.afc285a60 2.75 MB Wed, 07 May 2025 11:03:48 GMT 83
8.0.8-ci.20250319T161908+sha.f38f935a2 2.75 MB Wed, 19 Mar 2025 16:20:05 GMT 73
8.0.8-ci.20250304T090142+sha.d52b320cc 2.75 MB Tue, 04 Mar 2025 09:02:44 GMT 59
8.0.8-ci.20250224T221546+sha.8620afdad 2.75 MB Mon, 24 Feb 2025 22:16:44 GMT 74
8.0.6-ci.20241118T164842+sha.c4c9d0d53 2.71 MB Mon, 18 Nov 2024 16:49:45 GMT 79
8.0.6-ci.20241108T212426+sha.82c6926bb 2.71 MB Fri, 08 Nov 2024 21:25:24 GMT 79
8.0.6-ci.20241021T103933+sha.882eab961 2.71 MB Mon, 21 Oct 2024 10:40:29 GMT 81
8.0.6-ci.20241013T182644+sha.b97701212 2.71 MB Sun, 13 Oct 2024 18:27:41 GMT 75
8.0.5-ci.20241013T044233+sha.2e914cc92 2.71 MB Sun, 13 Oct 2024 04:43:29 GMT 93
8.0.5-ci.20241013T042235+sha.8a19263d9 2.71 MB Sun, 13 Oct 2024 04:23:39 GMT 84
8.0.5-ci.20241012T172932+sha.c4a23ccbe 2.71 MB Sat, 12 Oct 2024 17:30:29 GMT 90
8.0.5-ci.20241008T121824+sha.1186b888a 2.71 MB Tue, 08 Oct 2024 12:19:18 GMT 88