Npgsql 9.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
3,963
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
91
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
880
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
1,634
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
6,298
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
10,908
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
15,097
Npgsql.EntityFrameworkCore.PostgreSQL.Design
Npgsql.EntityFrameworkCore.PostgreSQL.Design
3,951
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
73
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
75
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
77
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
81
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
84
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
92
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
93
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
94
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
98
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
99
Npgsql.NetTopologySuite
NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.
108

Version Downloads Last updated
9.0.2 9 12/13/2024
9.0.1 7 11/26/2024
9.0.0 6 12/14/2024
8.0.6 5 11/26/2024
8.0.5 11 10/14/2024
8.0.4 10 09/11/2024
8.0.3 16 05/22/2024
8.0.2 20 02/16/2024
8.0.1 14 12/05/2023
8.0.0 15 11/21/2023
8.0.0-rc.2 16 10/13/2023
8.0.0-preview.4 25 05/31/2023
8.0.0-preview.3 45 05/09/2023
8.0.0-preview.2 33 04/04/2023
8.0.0-preview.1 27 04/04/2023
7.0.9 6 11/26/2024
7.0.8 7 09/12/2024
7.0.7 10 05/22/2024
7.0.6 13 09/25/2023
7.0.4 28 06/07/2023
7.0.2 33 04/04/2023
7.0.1 25 01/15/2023
7.0.0 1,587 11/15/2022
7.0.0-rc.2 99 12/01/2022
7.0.0-rc.1 63 09/22/2022
7.0.0-preview.7 33 09/04/2022
7.0.0-preview.6 88 07/30/2022
7.0.0-preview.5 84 09/08/2022
7.0.0-preview.4 40 09/07/2022
7.0.0-preview.3 25 09/08/2022
7.0.0-preview.2 72 09/02/2022
7.0.0-preview.1 18 09/07/2022
6.0.13 7 11/26/2024
6.0.12 11 09/11/2024
6.0.11 10 05/22/2024
6.0.10 12 09/27/2023
6.0.9 29 04/04/2023
6.0.8 6,295 01/15/2023
6.0.7 14,440 09/21/2022
6.0.6 73 09/03/2022
6.0.5 33 08/21/2022
6.0.4 63 08/25/2022
6.0.3 172 06/28/2022
6.0.2 41 09/02/2022
6.0.1 69 08/21/2022
6.0.0 48 09/03/2022
6.0.0-rc.2 89 08/25/2022
6.0.0-rc.1 43 08/23/2022
6.0.0-preview7 38 09/05/2022
6.0.0-preview6 61 08/24/2022
6.0.0-preview5 41 08/04/2022
6.0.0-preview4 52 08/24/2022
6.0.0-preview3 15 08/22/2022
6.0.0-preview2 60 08/25/2022
5.0.18 13 05/22/2024
5.0.17 13 09/23/2023
5.0.16 43 04/04/2023
5.0.15 42 09/22/2022
5.0.14 79 08/24/2022
5.0.13 20 09/08/2022
5.0.12 51 09/02/2022
5.0.11 25 09/02/2022
5.0.10 10,815 06/27/2022
5.0.7 22 09/09/2022
5.0.5 57 09/07/2022
5.0.4 64 08/23/2022
5.0.3 52 09/03/2022
5.0.2 25 09/09/2022
5.0.1.1 58 09/08/2022
5.0.0 80 08/02/2022
4.1.14 13 05/22/2024
4.1.13 11 05/15/2024
4.1.12 32 08/23/2022
4.1.11 31 09/09/2022
4.1.10 44 08/27/2022
4.1.9 38 09/10/2022
4.1.8 82 08/22/2022
4.1.7 33 09/02/2022
4.1.6 24 09/07/2022
4.1.5 60 09/08/2022
4.1.4 43 09/03/2022
4.1.3.1 19 09/07/2022
4.1.3 88 09/09/2022
4.1.2 43 09/09/2022
4.1.1 75 09/03/2022
4.1.0 58 08/26/2022
4.0.17 9 06/10/2024
4.0.16 12 05/22/2024
4.0.14 13 05/22/2024
4.0.13 43 08/23/2022
4.0.12 51 09/09/2022
4.0.11 38 09/02/2022
4.0.10 74 09/09/2022
4.0.9 36 09/02/2022
4.0.8 25 08/21/2022
4.0.7 54 09/03/2022
4.0.6 32 09/02/2022
4.0.5 37 08/22/2022
4.0.4 28 09/02/2022
4.0.3 76 09/07/2022
4.0.2 76 09/09/2022
4.0.1 91 09/02/2022
4.0.0 86 08/20/2022
4.0.0-rc1 21 09/07/2022
4.0.0-preview2 35 08/24/2022
4.0.0-preview1 34 09/02/2022
3.2.7 34 06/29/2022
3.2.6 37 07/02/2022
3.2.5 60 09/07/2022
3.2.4.1 21 07/31/2022
3.2.4 36 08/22/2022
3.2.3 47 07/05/2022
3.2.2 25 08/24/2022
3.2.1 38 09/08/2022
3.2.0 94 09/02/2022
3.1.10 74 09/07/2022
3.1.9 3,954 06/27/2022
3.1.8 22 09/08/2022
3.1.7 38 08/15/2022
3.1.6 27 09/04/2022
3.1.5 32 09/06/2022
3.1.4 17 09/08/2022
3.1.3 51 07/31/2022
3.1.2 82 09/08/2022
3.1.1 87 08/23/2022
3.1.0 85 08/23/2022
3.0.8 36 09/08/2022
3.0.7 65 08/24/2022
3.0.6 90 07/31/2022
3.0.5 24 09/03/2022
3.0.4 32 07/11/2022
3.0.3 43 08/21/2022
3.0.2 65 09/07/2022
3.0.1 38 08/26/2022
3.0.0 25 08/22/2022
2.2.7 72 09/02/2022
2.2.6 22 07/01/2022
2.2.5 22 08/27/2022
2.2.4.3 32 08/24/2022
2.2.4.1 31 09/09/2022
2.2.3 40 09/08/2022
2.2.2 46 09/09/2022
2.2.1 23 08/21/2022
2.2.0 41 08/22/2022
2.1.3 33 09/08/2022
2.1.2 67 07/13/2022
2.1.1 49 08/24/2022
2.1.0 107 09/10/2022
2.0.14.3 58 09/02/2022
2.0.12.1 32 08/24/2022
2.0.11 59 08/26/2022