Npgsql 9.0.3

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.
45
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
47
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
62
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
65
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
74
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
79
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
96
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
99
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
232
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
262
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
46
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
47
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
48
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
53
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
60
Npgsql.Json.NET
Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.
113
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
333

Version Downloads Last updated
9.0.3 4 03/27/2025
9.0.2 12 12/07/2024
9.0.1 15 11/19/2024
9.0.0 9 11/19/2024
8.0.7 2 04/02/2025
8.0.6 9 11/23/2024
8.0.5 19 10/21/2024
8.0.4 13 10/07/2024
8.0.3 67 06/27/2024
8.0.2 29 07/22/2024
8.0.1 45 02/04/2024
8.0.0 112 02/04/2024
8.0.0-rc.2 29 07/22/2024
8.0.0-preview.4 34 07/22/2024
8.0.0-preview.3 34 07/22/2024
8.0.0-preview.2 31 07/22/2024
8.0.0-preview.1 32 07/22/2024
7.0.10 2 04/02/2025
7.0.9 15 11/19/2024
7.0.8 10 10/08/2024
7.0.7 34 07/22/2024
7.0.6 36 07/22/2024
7.0.4 46 07/22/2024
7.0.2 95 02/04/2024
7.0.1 35 07/22/2024
7.0.0 52 02/04/2024
7.0.0-rc.2 36 07/22/2024
7.0.0-rc.1 26 07/22/2024
7.0.0-preview.7 37 07/22/2024
7.0.0-preview.6 39 07/22/2024
7.0.0-preview.5 37 07/22/2024
7.0.0-preview.4 36 07/22/2024
7.0.0-preview.3 34 07/22/2024
7.0.0-preview.2 34 07/22/2024
7.0.0-preview.1 30 07/22/2024
6.0.13 9 11/19/2024
6.0.12 9 10/08/2024
6.0.11 37 07/22/2024
6.0.10 34 07/22/2024
6.0.9 36 07/22/2024
6.0.8 31 07/22/2024
6.0.7 44 07/22/2024
6.0.6 37 07/22/2024
6.0.5 38 07/22/2024
6.0.4 61 02/09/2024
6.0.3 71 02/04/2024
6.0.2 39 07/22/2024
6.0.1 33 07/22/2024
6.0.0 38 07/22/2024
6.0.0-rc.2 40 07/22/2024
6.0.0-rc.1 28 07/22/2024
6.0.0-preview7 48 07/22/2024
6.0.0-preview6 33 07/22/2024
6.0.0-preview5 34 07/22/2024
6.0.0-preview4 32 07/22/2024
6.0.0-preview3 31 07/22/2024
6.0.0-preview2 34 07/22/2024
5.0.18 43 07/22/2024
5.0.17 45 07/22/2024
5.0.16 40 07/22/2024
5.0.15 35 07/22/2024
5.0.14 42 07/22/2024
5.0.13 42 07/20/2024
5.0.12 38 07/22/2024
5.0.11 32 07/22/2024
5.0.10 31 07/22/2024
5.0.7 39 07/21/2024
5.0.5 137 02/04/2024
5.0.4 38 07/22/2024
5.0.3 36 07/22/2024
5.0.2 38 07/22/2024
5.0.1.1 34 07/22/2024
5.0.0 31 07/22/2024
4.1.14 35 07/22/2024
4.1.13 48 07/22/2024
4.1.12 34 07/22/2024
4.1.11 43 07/22/2024
4.1.10 41 07/21/2024
4.1.9 32 07/22/2024
4.1.8 29 07/22/2024
4.1.7 36 07/22/2024
4.1.6 42 07/22/2024
4.1.5 30 07/22/2024
4.1.4 37 07/22/2024
4.1.3.1 46 07/22/2024
4.1.3 30 07/22/2024
4.1.2 40 07/22/2024
4.1.1 36 07/22/2024
4.1.0 36 07/22/2024
4.0.17 62 07/22/2024
4.0.16 58 07/22/2024
4.0.14 40 07/22/2024
4.0.13 37 07/22/2024
4.0.12 31 07/22/2024
4.0.11 38 07/22/2024
4.0.10 44 07/22/2024
4.0.9 40 07/22/2024
4.0.8 43 07/22/2024
4.0.7 41 07/22/2024
4.0.6 41 07/22/2024
4.0.5 32 07/22/2024
4.0.4 32 07/22/2024
4.0.3 36 07/22/2024
4.0.2 46 07/22/2024
4.0.1 30 07/22/2024
4.0.0 33 07/22/2024
4.0.0-rc1 40 07/22/2024
4.0.0-preview2 33 07/22/2024
4.0.0-preview1 35 07/22/2024
3.2.7 33 07/22/2024
3.2.6 43 07/22/2024
3.2.5 43 07/22/2024
3.2.4.1 34 07/22/2024
3.2.4 44 07/22/2024
3.2.3 40 07/22/2024
3.2.2 35 07/22/2024
3.2.1 40 07/22/2024
3.2.0 35 07/22/2024
3.1.10 34 07/22/2024
3.1.9 39 07/22/2024
3.1.8 29 07/22/2024
3.1.7 35 07/22/2024
3.1.6 32 07/22/2024
3.1.5 41 07/22/2024
3.1.4 33 07/22/2024
3.1.3 41 07/22/2024
3.1.2 31 07/22/2024
3.1.1 37 07/22/2024
3.1.0 24 07/22/2024
3.0.8 33 07/22/2024
3.0.7 38 07/22/2024
3.0.6 41 07/22/2024
3.0.5 44 07/22/2024
3.0.4 43 07/22/2024
3.0.3 40 07/22/2024
3.0.2 41 07/22/2024
3.0.1 33 07/22/2024
3.0.0 36 07/22/2024
2.2.7 42 07/22/2024
2.2.6 39 07/22/2024
2.2.5 44 07/22/2024
2.2.4.3 36 07/22/2024
2.2.4.1 36 07/22/2024
2.2.3 41 07/22/2024
2.2.2 27 07/22/2024
2.2.1 42 07/22/2024
2.2.0 40 07/22/2024
2.1.3 36 07/22/2024
2.1.2 49 07/22/2024
2.1.1 39 07/22/2024
2.1.0 43 07/22/2024
2.0.14.3 41 07/22/2024
2.0.12.1 43 07/22/2024
2.0.11 29 07/22/2024