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.
13
Npgsql.EntityFrameworkCore.PostgreSQL
Npgsql.EntityFrameworkCore.PostgreSQL
13
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
12
Npgsql.EntityFrameworkCore.PostgreSQL.Design
PostgreSQL/Npgsql provider for Entity Framework Core.
12
Npgsql.EntityFrameworkCore.PostgreSQL.Design
Npgsql.EntityFrameworkCore.PostgreSQL.Design
12
Npgsql.EntityFrameworkCore.PostgreSQL
Npgsql.EntityFrameworkCore.PostgreSQL
12

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