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.

No packages depend on Npgsql.

Version Downloads Last updated
10.0.2 19 3/12/2026
10.0.1 25 12/20/2025
10.0.0 39 11/23/2025
10.0.0-rc.1 66 10/10/2025
9.0.5 19 3/12/2026
9.0.4 73 10/10/2025
9.0.3 69 10/10/2025
9.0.2 59 10/10/2025
9.0.1 70 10/10/2025
8.0.9 20 3/12/2026
8.0.8 64 10/10/2025
8.0.7 66 10/10/2025
8.0.6 66 10/10/2025
8.0.5 66 10/10/2025
8.0.4 60 10/10/2025
8.0.3 67 10/10/2025
8.0.2 68 10/10/2025
8.0.1 68 10/10/2025
8.0.0 60 10/10/2025
8.0.0-rc.2 52 10/10/2025
8.0.0-preview.4 52 10/10/2025
8.0.0-preview.3 70 10/10/2025
8.0.0-preview.2 66 10/10/2025
8.0.0-preview.1 70 10/10/2025
7.0.10 56 10/10/2025
7.0.9 59 10/10/2025
7.0.8 66 10/10/2025
7.0.7 68 10/10/2025
7.0.6 57 10/10/2025
7.0.4 63 10/10/2025
7.0.2 62 10/10/2025
7.0.1 70 10/10/2025
7.0.0 60 10/10/2025
7.0.0-rc.2 64 10/10/2025
7.0.0-rc.1 73 10/10/2025
7.0.0-preview.7 61 10/10/2025
7.0.0-preview.6 66 10/10/2025
7.0.0-preview.5 57 10/10/2025
7.0.0-preview.4 58 10/10/2025
7.0.0-preview.3 60 10/10/2025
7.0.0-preview.2 54 10/10/2025
7.0.0-preview.1 67 10/10/2025
6.0.13 67 10/10/2025
6.0.12 69 10/10/2025
6.0.11 61 10/10/2025
6.0.10 67 10/10/2025
6.0.9 55 10/10/2025
6.0.8 59 10/10/2025
6.0.7 61 10/10/2025
6.0.6 71 10/10/2025
6.0.5 63 10/10/2025
6.0.4 68 10/10/2025
6.0.3 66 10/10/2025
6.0.2 59 10/10/2025
6.0.1 66 10/10/2025
6.0.0 61 10/10/2025
6.0.0-rc.2 65 10/10/2025
6.0.0-rc.1 72 10/10/2025
6.0.0-preview7 54 10/10/2025
6.0.0-preview6 70 10/10/2025
6.0.0-preview5 63 10/10/2025
6.0.0-preview4 66 10/10/2025
6.0.0-preview3 65 10/10/2025
6.0.0-preview2 60 10/10/2025
5.0.18 56 10/10/2025
5.0.17 64 10/10/2025
5.0.16 63 10/10/2025
5.0.15 70 10/10/2025
5.0.14 62 10/10/2025
5.0.13 54 10/10/2025
5.0.12 64 10/10/2025
5.0.11 58 10/10/2025
5.0.10 64 10/10/2025
5.0.7 74 10/10/2025
5.0.5 67 10/10/2025
5.0.4 64 10/10/2025
5.0.3 58 10/10/2025
5.0.2 70 10/10/2025
5.0.1.1 64 10/10/2025
5.0.0 63 10/10/2025
4.1.14 69 10/10/2025
4.1.13 59 10/10/2025
4.1.12 75 10/10/2025
4.1.11 55 10/10/2025
4.1.10 61 10/10/2025
4.1.9 66 10/10/2025
4.1.8 66 10/10/2025
4.1.7 59 10/10/2025
4.1.6 60 10/10/2025
4.1.5 60 10/10/2025
4.1.4 61 10/10/2025
4.1.3.1 52 10/10/2025
4.1.3 67 10/10/2025
4.1.2 59 10/10/2025
4.1.1 60 10/10/2025
4.1.0 61 10/10/2025
4.0.17 58 10/10/2025
4.0.16 59 10/10/2025
4.0.14 63 10/10/2025
4.0.13 51 10/10/2025
4.0.12 59 10/10/2025
4.0.11 73 10/10/2025
4.0.10 48 10/10/2025
4.0.9 61 10/10/2025
4.0.8 66 10/10/2025
4.0.7 68 10/10/2025
4.0.6 67 10/10/2025
4.0.5 69 10/10/2025
4.0.4 55 10/10/2025
4.0.3 69 10/10/2025
4.0.2 60 10/10/2025
4.0.1 60 10/10/2025
4.0.0 57 10/10/2025
4.0.0-rc1 64 10/10/2025
4.0.0-preview2 60 10/10/2025
4.0.0-preview1 69 10/10/2025
3.2.7 73 10/10/2025
3.2.6 53 10/10/2025
3.2.5 74 10/10/2025
3.2.4.1 67 10/10/2025
3.2.4 65 10/10/2025
3.2.3 54 10/10/2025
3.2.2 59 10/10/2025
3.2.1 52 10/10/2025
3.2.0 72 10/10/2025
3.1.10 66 10/10/2025
3.1.9 57 10/10/2025
3.1.8 62 10/10/2025
3.1.7 63 10/10/2025
3.1.6 61 10/10/2025
3.1.5 60 10/10/2025
3.1.4 73 10/10/2025
3.1.3 64 10/10/2025
3.1.2 67 10/10/2025
3.1.1 61 10/10/2025
3.1.0 60 10/10/2025
3.0.8 74 10/10/2025
3.0.7 62 10/10/2025
3.0.6 60 10/10/2025
3.0.5 59 10/10/2025
3.0.4 72 10/10/2025
3.0.3 62 10/10/2025
3.0.2 60 10/10/2025
3.0.1 72 10/10/2025
3.0.0 55 10/10/2025
2.2.7 67 10/10/2025
2.2.6 69 10/10/2025
2.2.5 57 10/10/2025
2.2.4.3 63 10/10/2025
2.2.4.1 61 10/10/2025
2.2.3 66 10/10/2025
2.2.2 60 10/10/2025
2.2.1 60 10/10/2025
2.2.0 67 10/10/2025
2.1.3 65 10/10/2025
2.1.2 67 10/10/2025
2.1.1 59 10/10/2025
2.1.0 57 10/10/2025
2.0.14.3 58 10/10/2025
2.0.12.1 71 10/10/2025
2.0.11 71 10/10/2025