Npgsql 8.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
Hangfire.PostgreSql
PostgreSql storage implementation for Hangfire (background job system for ASP.NET and aspnet core applications).
2,640
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
2,455
OnlineStorage.Server
Cерверный модуль облачного файлового хранилища.
1,547
Salazki.SearchEngine.PostgreSql
Package Description
754
OnlineStorage.Server
Cерверный модуль облачного файлового хранилища.
508
Salazki.SearchEngine.PostgreSql
Package Description
437
Salazki.SearchEngine.PostgreSql
Package Description
394
Salazki.SearchEngine.PostgreSql
Package Description
365
Salazki.SearchEngine.PostgreSql
Package Description
233
Salazki.SearchEngine.PostgreSql
Package Description
183
Salazki.SearchEngine.PostgreSql
Package Description
168
Salazki.SearchEngine.PostgreSql
Package Description
155
Salazki.SearchEngine.PostgreSql
Package Description
140
Salazki.SearchEngine.PostgreSql
Package Description
133
OnlineStorage2.Server
Cерверный модуль облачного файлового хранилища.
80
Salazki.SearchEngine.PostgreSql
Package Description
72
Salazki.SearchEngine.PostgreSql
Package Description
63
Salazki.SearchEngine.PostgreSql
Package Description
61
Salazki.SearchEngine.PostgreSql
Package Description
54
Salazki.SearchEngine.PostgreSql
Package Description
53

Version Downloads Last updated
8.0.2 2,417 05/09/2025
7.0.4 136 05/09/2025
6.0.0 2,669 05/09/2025