npgsql-vnext - Npgsql 10.0.0-ci.20250620T102709+sha.e3921f213

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

PM> Install-Package Npgsql -Version 10.0.0-ci.20250620T102709 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> nuget.exe install Npgsql -Version 10.0.0-ci.20250620T102709 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> dotnet add package Npgsql --version 10.0.0-ci.20250620T102709 --source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard
<PackageReference Include="Npgsql" Version="10.0.0-ci.20250620T102709" />
Copy to clipboard
source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

nuget Npgsql  ~> 10.0.0-ci.20250620T102709
Copy to clipboard

> choco install Npgsql --version 10.0.0-ci.20250620T102709 --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" -RequiredVersion "10.0.0-ci.20250620T102709" -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 - 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 8.0
    • Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
  • .NETFramework 9.0
    • Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
  • .NETFramework 8.0: 8.0.0.0
  • .NETFramework 9.0: 9.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

Unknown

Tags

npgsql postgresql postgres ado ado.net database sql

Info

287 total downloads
0 downloads for version 10.0.0-ci.20250620T102709+sha.e3921f213
Download (1.15 MB)
Download symbols (350.56 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
10.0.0-ci.20250620T102709+sha.e3921f213 1.15 MB Fri, 20 Jun 2025 10:27:45 GMT 0
10.0.0-ci.20250617T105823+sha.317c4e357 1.15 MB Tue, 17 Jun 2025 10:58:59 GMT 0
10.0.0-ci.20250616T142649+sha.d9c1b0826 1.15 MB Mon, 16 Jun 2025 14:27:25 GMT 0
10.0.0-ci.20250603T082859+sha.fe7f7755e 1.14 MB Tue, 03 Jun 2025 08:29:34 GMT 2
10.0.0-ci.20250601T105559+sha.892774fda 1.14 MB Sun, 01 Jun 2025 10:56:35 GMT 1
10.0.0-ci.20250507T111417+sha.4da52a03f 1.14 MB Wed, 07 May 2025 11:14:55 GMT 5
10.0.0-ci.20250430T170134+sha.73202604c 1.14 MB Wed, 30 Apr 2025 17:02:16 GMT 6
10.0.0-ci.20250428T155815+sha.c243c4f0b 1.14 MB Mon, 28 Apr 2025 15:58:50 GMT 4
10.0.0-ci.20250428T155725+sha.3f89c1df4 587.61 KB Mon, 28 Apr 2025 15:57:55 GMT 5
10.0.0-ci.20250427T102920+sha.7ad12a45c 587.6 KB Sun, 27 Apr 2025 10:29:50 GMT 4
10.0.0-ci.20250411T150650+sha.42e02af2c 587.6 KB Fri, 11 Apr 2025 15:07:24 GMT 6
10.0.0-ci.20250409T121615+sha.251d73b01 587.6 KB Wed, 09 Apr 2025 12:16:45 GMT 5
10.0.0-ci.20250330T082004+sha.cf9d2433b 587.06 KB Sun, 30 Mar 2025 08:20:33 GMT 7
10.0.0-ci.20250326T112922+sha.ef219b73f 587.07 KB Wed, 26 Mar 2025 11:29:52 GMT 8
10.0.0-ci.20250322T223748+sha.aaf92983c 587.07 KB Sat, 22 Mar 2025 22:38:14 GMT 4
10.0.0-ci.20250322T151509+sha.aaf92983c 587.07 KB Sat, 22 Mar 2025 15:15:36 GMT 5
10.0.0-ci.20250320T100338+sha.22a0aa9bd 587.07 KB Thu, 20 Mar 2025 10:04:08 GMT 6
10.0.0-ci.20250319T161326+sha.2bc67c3e8 587.14 KB Wed, 19 Mar 2025 16:13:52 GMT 4
10.0.0-ci.20250317T235032+sha.562d39540 587.15 KB Mon, 17 Mar 2025 23:51:03 GMT 4
10.0.0-ci.20250317T122753+sha.eabc6ab1f 587.14 KB Mon, 17 Mar 2025 12:28:24 GMT 5
10.0.0-ci.20250317T094246+sha.81e9c5808 587.14 KB Mon, 17 Mar 2025 09:47:30 GMT 5
10.0.0-ci.20250304T121903+sha.a4a7f609c 587.13 KB Tue, 04 Mar 2025 12:19:40 GMT 5
10.0.0-ci.20250304T085604+sha.061a5f205 586.06 KB Tue, 04 Mar 2025 08:56:58 GMT 6
10.0.0-ci.20250224T142102+sha.3146bcda3 585.7 KB Mon, 24 Feb 2025 14:21:53 GMT 6
10.0.0-ci.20250224T104015+sha.a46eab961 585.56 KB Mon, 24 Feb 2025 10:40:43 GMT 5
10.0.0-ci.20250221T100207+sha.44a7ab1cc 585.58 KB Fri, 21 Feb 2025 10:02:44 GMT 7
10.0.0-ci.20250206T144702+sha.7f1a59fa8 585.54 KB Thu, 06 Feb 2025 14:47:41 GMT 8
10.0.0-ci.20250204T115132+sha.e8664e596 585.66 KB Tue, 04 Feb 2025 11:52:13 GMT 6
10.0.0-ci.20250204T114537+sha.3505dc3ab 585.58 KB Tue, 04 Feb 2025 11:46:10 GMT 5
10.0.0-ci.20250130T214201+sha.8effce1e3 585.57 KB Thu, 30 Jan 2025 21:42:34 GMT 8
10.0.0-ci.20241228T150128+sha.010dc51ae 585.58 KB Sat, 28 Dec 2024 15:01:55 GMT 6
10.0.0-ci.20241228T031801+sha.523033601 585.97 KB Sat, 28 Dec 2024 03:18:33 GMT 6
10.0.0-ci.20241217T121314+sha.62dcf2175 585.96 KB Tue, 17 Dec 2024 12:13:41 GMT 7
10.0.0-ci.20241120T173506+sha.2b013ed52 586.02 KB Wed, 20 Nov 2024 17:35:35 GMT 11
10.0.0-ci.20241120T163515+sha.a1f1022a7 586.04 KB Wed, 20 Nov 2024 16:35:47 GMT 10
10.0.0-ci.20241120T162625+sha.d60679578 586.01 KB Wed, 20 Nov 2024 16:26:54 GMT 7
10.0.0-ci.20241120T154046+sha.2f0bdd107 585.98 KB Wed, 20 Nov 2024 15:41:18 GMT 8
10.0.0-ci.20241120T104802+sha.b0dde48c5 585.97 KB Wed, 20 Nov 2024 10:48:29 GMT 6
10.0.0-ci.20241119T110305+sha.1d93236d0 1.14 MB Tue, 19 Nov 2024 11:03:42 GMT 7
10.0.0-ci.20241118T151051+sha.94de20fed 1.14 MB Mon, 18 Nov 2024 15:11:26 GMT 9
9.0.0-preview.1-ci.20241112T145756+sha.196f40589 1.13 MB Tue, 12 Nov 2024 14:58:28 GMT 7
9.0.0-preview.1-ci.20241111T090844+sha.d95db6427 1.13 MB Mon, 11 Nov 2024 09:09:23 GMT 7
9.0.0-preview.1-ci.20241110T154550+sha.06f5ba3c9 1.13 MB Sun, 10 Nov 2024 15:46:25 GMT 8
9.0.0-preview.1-ci.20241110T132100+sha.7ef908db1 1.13 MB Sun, 10 Nov 2024 13:21:34 GMT 7
9.0.0-preview.1-ci.20241110T122503+sha.919ed979c 1.13 MB Sun, 10 Nov 2024 12:25:41 GMT 6
9.0.0-preview.1-ci.20241110T115109+sha.4f2785b6c 1.13 MB Sun, 10 Nov 2024 11:51:45 GMT 7
9.0.0-preview.1-ci.20241109T063316+sha.7949c45e2 1.13 MB Sat, 09 Nov 2024 06:33:48 GMT 4
9.0.0-preview.1-ci.20241108T211319+sha.e038010ae 1.12 MB Fri, 08 Nov 2024 21:13:55 GMT 8
9.0.0-preview.1-ci.20241108T195847+sha.91086e54d 1.12 MB Fri, 08 Nov 2024 19:59:23 GMT 7
9.0.0-preview.1-ci.20241030T184440+sha.441c1154e 1.12 MB Wed, 30 Oct 2024 18:45:20 GMT 7