Npgsql 10.0.2

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

Quickstart

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

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

await using var conn = new NpgsqlConnection(connString);
await conn.OpenAsync();

// 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.

Showing the top 20 packages that depend on Npgsql.

Packages Downloads
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
25
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
22
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
21
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
20
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
19
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
18
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
17
AspNetCore.HealthChecks.NpgSql
HealthChecks.NpgSql is a health check for Postgress Sql.
17
EFCore.BulkExtensions.PostgreSql
EntityFramework .Net EFCore EF Core Bulk Batch Extensions for Insert Update Delete Read (CRUD) operations on PostgreSQL
16
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
16
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
15
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
14
Npgsql.EntityFrameworkCore.PostgreSQL
Npgsql.EntityFrameworkCore.PostgreSQL
14

Version Downloads Last updated
10.0.2 5 03/13/2026
10.0.1 22 12/20/2025
10.0.0 15 12/10/2025
10.0.0-rc.1 9 12/11/2025
9.0.5 3 03/13/2026
9.0.4 8 12/14/2025
9.0.3 11 12/13/2025
9.0.2 8 12/13/2025
9.0.1 12 12/24/2025
8.0.9 3 03/13/2026
8.0.8 7 01/08/2026
8.0.7 10 12/11/2025
8.0.6 13 12/15/2025
8.0.5 10 01/05/2026
8.0.4 11 12/15/2025
8.0.3 13 12/14/2025
8.0.2 13 12/14/2025
8.0.1 8 12/23/2025
8.0.0 14 12/14/2025
8.0.0-rc.2 8 12/16/2025
8.0.0-preview.4 13 12/15/2025
8.0.0-preview.3 13 12/15/2025
8.0.0-preview.2 8 01/05/2026
8.0.0-preview.1 9 12/20/2025
7.0.10 15 12/12/2025
7.0.9 10 01/01/2026
7.0.8 16 12/11/2025
7.0.7 13 12/13/2025
7.0.6 8 12/28/2025
7.0.4 8 12/12/2025
7.0.2 13 12/21/2025
7.0.1 8 12/09/2025
7.0.0 13 12/19/2025
7.0.0-rc.2 6 12/14/2025
7.0.0-rc.1 11 12/12/2025
7.0.0-preview.7 10 12/09/2025
7.0.0-preview.6 12 12/12/2025
7.0.0-preview.5 11 12/31/2025
7.0.0-preview.4 10 12/22/2025
7.0.0-preview.3 13 01/05/2026
7.0.0-preview.2 7 12/24/2025
7.0.0-preview.1 11 12/15/2025
6.0.13 11 12/13/2025
6.0.12 14 12/20/2025
6.0.11 7 12/15/2025
6.0.10 11 12/20/2025
6.0.9 12 12/11/2025
6.0.8 8 12/15/2025
6.0.7 8 01/06/2026
6.0.6 8 12/10/2025
6.0.5 10 01/05/2026
6.0.4 13 12/12/2025
6.0.3 10 12/18/2025
6.0.2 12 12/10/2025
6.0.1 10 01/11/2026
6.0.0 14 12/13/2025
6.0.0-rc.2 9 12/09/2025
6.0.0-rc.1 9 12/18/2025
6.0.0-preview7 8 12/12/2025
6.0.0-preview6 12 12/23/2025
6.0.0-preview5 10 12/23/2025
6.0.0-preview4 16 12/23/2025
6.0.0-preview3 9 12/25/2025
6.0.0-preview2 12 12/13/2025
5.0.18 11 12/11/2025
5.0.17 8 12/20/2025
5.0.16 10 12/20/2025
5.0.15 10 12/15/2025
5.0.14 6 12/20/2025
5.0.13 12 12/14/2025
5.0.12 9 12/10/2025
5.0.11 12 12/13/2025
5.0.10 9 12/20/2025
5.0.7 12 01/07/2026
5.0.5 12 12/13/2025
5.0.4 8 12/23/2025
5.0.3 9 12/11/2025
5.0.2 6 12/13/2025
5.0.1.1 9 12/15/2025
5.0.0 10 12/29/2025
4.1.14 17 12/15/2025
4.1.13 11 12/14/2025
4.1.12 13 12/11/2025
4.1.11 8 01/01/2026
4.1.10 10 12/10/2025
4.1.9 16 12/11/2025
4.1.8 8 12/23/2025
4.1.7 8 12/24/2025
4.1.6 9 12/22/2025
4.1.5 9 12/16/2025
4.1.4 9 12/13/2025
4.1.3.1 9 01/01/2026
4.1.3 10 12/09/2025
4.1.2 6 12/23/2025
4.1.1 10 12/10/2025
4.1.0 10 12/12/2025
4.0.17 16 12/13/2025
4.0.16 12 12/16/2025
4.0.14 11 12/20/2025
4.0.13 10 12/20/2025
4.0.12 9 12/20/2025
4.0.11 13 12/13/2025
4.0.10 8 12/20/2025
4.0.9 9 12/23/2025
4.0.8 11 12/13/2025
4.0.7 13 12/22/2025
4.0.6 7 02/05/2026
4.0.5 12 12/20/2025
4.0.4 11 12/12/2025
4.0.3 10 12/23/2025
4.0.2 12 12/24/2025
4.0.1 10 12/27/2025
4.0.0 10 12/17/2025
4.0.0-rc1 10 12/15/2025
4.0.0-preview2 8 01/01/2026
4.0.0-preview1 8 12/23/2025
3.2.7 15 12/11/2025
3.2.6 6 01/09/2026
3.2.5 10 12/20/2025
3.2.4.1 8 01/01/2026
3.2.4 7 12/14/2025
3.2.3 12 12/16/2025
3.2.2 9 01/01/2026
3.2.1 12 12/24/2025
3.2.0 9 01/09/2026
3.1.10 11 12/20/2025
3.1.9 8 12/24/2025
3.1.8 10 12/13/2025
3.1.7 8 12/15/2025
3.1.6 13 12/10/2025
3.1.5 10 01/01/2026
3.1.4 13 12/16/2025
3.1.3 11 12/14/2025
3.1.2 8 12/14/2025
3.1.1 8 01/06/2026
3.1.0 10 12/12/2025
3.0.8 12 12/16/2025
3.0.7 9 01/01/2026
3.0.6 11 12/14/2025
3.0.5 11 12/19/2025
3.0.4 6 01/01/2026
3.0.3 8 12/11/2025
3.0.2 7 12/24/2025
3.0.1 8 12/17/2025
3.0.0 9 01/11/2026
2.2.7 9 12/31/2025
2.2.6 12 12/11/2025
2.2.5 9 12/24/2025
2.2.4.3 9 01/04/2026
2.2.4.1 10 12/30/2025
2.2.3 8 12/12/2025
2.2.2 7 12/20/2025
2.2.1 9 12/12/2025
2.2.0 9 12/12/2025
2.1.3 8 12/23/2025
2.1.2 9 12/24/2025
2.1.1 14 12/18/2025
2.1.0 9 12/14/2025
2.0.14.3 14 12/13/2025
2.0.12.1 12 12/22/2025
2.0.11 9 12/20/2025