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
Npgsql.EntityFrameworkCore.PostgreSQL
22
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
20
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
21
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
22
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
23
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
24
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
25
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
246
TestContainers
Package Description
22
TestContainers
Package Description
23

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