npgsql-vnext - Npgsql 11.0.0-preview.1-ci.20260311T010144+sha.fc81e741e

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

PM> Install-Package Npgsql -Version 11.0.0-preview.1-ci.20260311T010144 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> nuget.exe install Npgsql -Version 11.0.0-preview.1-ci.20260311T010144 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> dotnet add package Npgsql --version 11.0.0-preview.1-ci.20260311T010144 --source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard
<PackageReference Include="Npgsql" Version="11.0.0-preview.1-ci.20260311T010144" />
Copy to clipboard
source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

nuget Npgsql  ~> 11.0.0-preview.1-ci.20260311T010144
Copy to clipboard

> choco install Npgsql --version 11.0.0-preview.1-ci.20260311T010144 --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 "11.0.0-preview.1-ci.20260311T010144" -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 10.0
    • Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.3)
    • Microsoft.Extensions.Logging.Abstractions (>= 10.0.3)
  • .NETFramework 10.0: 10.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

447 total downloads
9 downloads for version 11.0.0-preview.1-ci.20260311T010144+sha.fc81e741e
Download (596.07 KB)
Download symbols (177.65 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
11.0.0-preview.1-ci.20260424T091354+sha.2024d5a7f 592.55 KB Fri, 24 Apr 2026 09:15:12 GMT 3
11.0.0-preview.1-ci.20260422T142823+sha.dc5353f37 592.56 KB Wed, 22 Apr 2026 14:29:10 GMT 2
11.0.0-preview.1-ci.20260421T155839+sha.2d91c2973 592.56 KB Tue, 21 Apr 2026 15:59:10 GMT 2
11.0.0-preview.1-ci.20260420T165116+sha.f59c06f00 592.5 KB Mon, 20 Apr 2026 16:51:49 GMT 2
11.0.0-preview.1-ci.20260416T105126+sha.44f139494 592.45 KB Thu, 16 Apr 2026 10:52:02 GMT 6
11.0.0-preview.1-ci.20260415T101710+sha.768d18853 592.4 KB Wed, 15 Apr 2026 10:17:48 GMT 3
11.0.0-preview.1-ci.20260413T143112+sha.522521635 592.4 KB Mon, 13 Apr 2026 14:31:47 GMT 8
11.0.0-preview.1-ci.20260413T132903+sha.f703ef86c 592.39 KB Mon, 13 Apr 2026 13:29:35 GMT 9
11.0.0-preview.1-ci.20260413T123912+sha.5f26d6135 592.29 KB Mon, 13 Apr 2026 12:39:49 GMT 7
11.0.0-preview.1-ci.20260411T231629+sha.1c4e9c141 592.27 KB Sat, 11 Apr 2026 23:17:07 GMT 11
11.0.0-preview.1-ci.20260411T131445+sha.d90ced53a 590.18 KB Sat, 11 Apr 2026 13:15:19 GMT 6
11.0.0-preview.1-ci.20260410T135009+sha.01a773fba 590.15 KB Fri, 10 Apr 2026 13:50:39 GMT 6
11.0.0-preview.1-ci.20260408T104455+sha.8d90c3274 590.18 KB Wed, 08 Apr 2026 10:45:31 GMT 6
11.0.0-preview.1-ci.20260408T055932+sha.77d1fb9dc 590.18 KB Wed, 08 Apr 2026 06:00:07 GMT 4
11.0.0-preview.1-ci.20260407T191713+sha.e8dcaa06e 590.17 KB Tue, 07 Apr 2026 19:17:41 GMT 8
11.0.0-preview.1-ci.20260407T103554+sha.279405af1 589.85 KB Tue, 07 Apr 2026 10:36:28 GMT 6
11.0.0-preview.1-ci.20260407T100301+sha.97f267b10 589.7 KB Tue, 07 Apr 2026 10:03:34 GMT 12
11.0.0-preview.1-ci.20260407T092251+sha.bef867b58 589.8 KB Tue, 07 Apr 2026 09:23:36 GMT 11
11.0.0-preview.1-ci.20260404T193743+sha.404f67bf0 589.82 KB Sat, 04 Apr 2026 19:38:13 GMT 10
11.0.0-preview.1-ci.20260403T164328+sha.3698a477b 589.83 KB Fri, 03 Apr 2026 16:44:02 GMT 5
11.0.0-preview.1-ci.20260402T100751+sha.53b6ad3b4 589.84 KB Thu, 02 Apr 2026 10:08:28 GMT 10
11.0.0-preview.1-ci.20260325T120446+sha.c90653ac0 589.85 KB Wed, 25 Mar 2026 12:05:15 GMT 8
11.0.0-preview.1-ci.20260325T115944+sha.b5a100134 589.65 KB Wed, 25 Mar 2026 12:00:19 GMT 10
11.0.0-preview.1-ci.20260324T221722+sha.987ba5d38 589.55 KB Tue, 24 Mar 2026 22:17:55 GMT 10
11.0.0-preview.1-ci.20260324T220733+sha.a2c6353d4 589.56 KB Tue, 24 Mar 2026 22:08:05 GMT 10
11.0.0-preview.1-ci.20260319T065306+sha.ba8396384 589.56 KB Thu, 19 Mar 2026 06:53:38 GMT 9
11.0.0-preview.1-ci.20260318T061917+sha.9030fb918 589.54 KB Wed, 18 Mar 2026 06:19:50 GMT 13
11.0.0-preview.1-ci.20260318T061718+sha.67685cc4a 589.55 KB Wed, 18 Mar 2026 06:17:47 GMT 9
11.0.0-preview.1-ci.20260317T152034+sha.09c84605e 589.55 KB Tue, 17 Mar 2026 15:21:08 GMT 12
11.0.0-preview.1-ci.20260317T074232+sha.f06387b01 589.56 KB Tue, 17 Mar 2026 07:43:05 GMT 12
11.0.0-preview.1-ci.20260317T072601+sha.25def34b8 589.19 KB Tue, 17 Mar 2026 07:26:34 GMT 12
11.0.0-preview.1-ci.20260316T075508+sha.63cfeb7e2 588.45 KB Mon, 16 Mar 2026 07:55:39 GMT 8
11.0.0-preview.1-ci.20260315T143920+sha.0eb4e956a 588.3 KB Sun, 15 Mar 2026 14:39:49 GMT 11
11.0.0-preview.1-ci.20260314T073749+sha.9acf81a57 588.2 KB Sat, 14 Mar 2026 07:38:16 GMT 8
11.0.0-preview.1-ci.20260313T151336+sha.80973daec 587.9 KB Fri, 13 Mar 2026 15:14:08 GMT 12
11.0.0-preview.1-ci.20260313T143033+sha.e7aa407e5 587.88 KB Fri, 13 Mar 2026 14:31:02 GMT 15
11.0.0-preview.1-ci.20260313T130351+sha.32b2b7d0a 587.88 KB Fri, 13 Mar 2026 13:04:29 GMT 15
11.0.0-preview.1-ci.20260313T115806+sha.5c46b99d6 587.88 KB Fri, 13 Mar 2026 11:58:36 GMT 10
11.0.0-preview.1-ci.20260313T070858+sha.ff82cd743 595.85 KB Fri, 13 Mar 2026 07:09:31 GMT 9
11.0.0-preview.1-ci.20260312T074418+sha.b18dd1773 595.85 KB Thu, 12 Mar 2026 07:44:49 GMT 10
11.0.0-preview.1-ci.20260312T055551+sha.977e83596 595.84 KB Thu, 12 Mar 2026 05:56:27 GMT 11
11.0.0-preview.1-ci.20260312T054746+sha.013e7717a 595.85 KB Thu, 12 Mar 2026 05:48:20 GMT 11
11.0.0-preview.1-ci.20260312T023521+sha.a91ad95b8 595.8 KB Thu, 12 Mar 2026 02:35:52 GMT 9
11.0.0-preview.1-ci.20260312T023135+sha.0421d2ff0 595.8 KB Thu, 12 Mar 2026 02:32:07 GMT 9
11.0.0-preview.1-ci.20260311T183419+sha.aa86a1d6f 595.81 KB Wed, 11 Mar 2026 18:34:53 GMT 11
11.0.0-preview.1-ci.20260311T163108+sha.ec3666860 595.81 KB Wed, 11 Mar 2026 16:31:40 GMT 8
11.0.0-preview.1-ci.20260311T010144+sha.fc81e741e 596.07 KB Wed, 11 Mar 2026 01:02:24 GMT 9
11.0.0-preview.1-ci.20260310T063231+sha.a7a053173 595.13 KB Tue, 10 Mar 2026 06:33:07 GMT 18
11.0.0-preview.1-ci.20260305T220833+sha.e8ccd7da4 595.11 KB Thu, 05 Mar 2026 22:09:08 GMT 11
11.0.0-preview.1-ci.20260305T220400+sha.bd8c2d733 595.11 KB Thu, 05 Mar 2026 22:04:57 GMT 10