Npgsql 8.0.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Npgsql --version 8.0.2
NuGet\Install-Package Npgsql -Version 8.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Npgsql" Version="8.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql --version 8.0.2
#r "nuget: Npgsql, 8.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Npgsql as a Cake Addin
#addin nuget:?package=Npgsql&version=8.0.2

// Install Npgsql as a Cake Tool
#tool nuget:?package=Npgsql&version=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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.5K)

Showing the top 5 NuGet packages that depend on Npgsql:

Package Downloads
Npgsql.EntityFrameworkCore.PostgreSQL The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

PostgreSQL/Npgsql provider for Entity Framework Core.

AspNetCore.HealthChecks.NpgSql

HealthChecks.NpgSql is a health check for Postgress Sql.

Hangfire.PostgreSql

PostgreSql storage implementation for Hangfire (background job system for ASP.NET and aspnet core applications).

Npgsql.Json.NET The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.

Npgsql.EntityFrameworkCore.PostgreSQL.Design

PostgreSQL/Npgsql provider for Entity Framework Core.

GitHub repositories (220)

Showing the top 5 popular GitHub repositories that depend on Npgsql:

Repository Stars
DapperLib/Dapper
Dapper - a simple object mapper for .Net
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
dotnet/orleans
Cloud Native application framework for .NET
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
Version Downloads Last updated
8.0.2 1,003,204 2/10/2024
8.0.1 1,380,353 12/4/2023
8.0.0 2,871,306 11/21/2023
8.0.0-rc.2 147,706 10/11/2023
8.0.0-preview.4 212,330 5/17/2023
8.0.0-preview.3 42,748 4/24/2023
8.0.0-preview.2 43,978 3/20/2023
8.0.0-preview.1 71,264 3/3/2023
7.0.6 6,910,355 9/14/2023
7.0.4 13,768,368 4/24/2023
7.0.2 8,540,338 2/15/2023
7.0.1 6,329,227 12/17/2022
7.0.0 4,575,922 11/9/2022
7.0.0-rc.2 67,547 10/11/2022
7.0.0-rc.1 34,348 9/16/2022
7.0.0-preview.7 39,129 8/9/2022
7.0.0-preview.6 32,713 7/13/2022
7.0.0-preview.5 17,191 6/19/2022
7.0.0-preview.4 37,141 5/11/2022
7.0.0-preview.3 40,432 4/19/2022
7.0.0-preview.2 42,560 3/16/2022
7.0.0-preview.1 3,197,886 2/17/2022
6.0.10 1,131,026 9/14/2023
6.0.9 2,036,320 2/15/2023
6.0.8 6,442,657 12/17/2022
6.0.7 11,410,928 9/16/2022
6.0.6 9,623,098 8/4/2022
6.0.5 7,237,610 6/19/2022
6.0.4 9,904,051 4/19/2022
6.0.3 11,837,383 1/27/2022
6.0.2 4,874,273 12/20/2021
6.0.1 7,199,317 12/3/2021
6.0.0 16,416,725 11/9/2021
6.0.0-rc.2 139,527 10/14/2021
6.0.0-rc.1 79,522 9/24/2021
6.0.0-preview7 38,482 8/16/2021
6.0.0-preview6 10,205 7/31/2021
6.0.0-preview5 57,189 7/1/2021
6.0.0-preview4 59,491 5/27/2021
6.0.0-preview3 62,474 4/15/2021
6.0.0-preview2 67,574 3/11/2021
5.0.17 84,965 9/14/2023
5.0.16 252,124 2/15/2023
5.0.15 398,003 9/16/2022
5.0.14 312,398 6/19/2022
5.0.13 361,884 4/26/2022
5.0.12 751,413 2/1/2022
5.0.11 2,043,521 11/12/2021
5.0.10 9,455,099 9/15/2021
5.0.7 12,605,032 6/13/2021
5.0.5 4,321,932 5/11/2021
5.0.4 6,694,586 3/25/2021
5.0.3 6,127,482 1/26/2021
5.0.2 4,315,197 1/19/2021
5.0.1.1 2,579,985 12/12/2020
5.0.0 4,406,817 11/15/2020
4.1.12 689,226 6/19/2022
4.1.11 88,461 4/26/2022
4.1.10 715,249 11/12/2021
4.1.9 2,948,750 4/6/2021
4.1.8 3,010,648 1/21/2021
4.1.7 434,853 12/12/2020
4.1.6 1,049,311 11/15/2020
4.1.5 5,007,832 9/28/2020
4.1.4 3,905,812 7/19/2020
4.1.3.1 19,031,346 2/20/2020
4.1.3 7,587,103 1/31/2020
4.1.2 5,314,735 11/14/2019
4.1.1 3,729,342 10/2/2019
4.1.0 646,722 9/26/2019
4.0.13 92,050 6/19/2022
4.0.12 90,128 5/16/2021
4.0.11 457,862 7/19/2020
4.0.10 5,413,403 9/9/2019
4.0.9 1,069,194 8/14/2019
4.0.8 906,333 7/18/2019
4.0.7 6,814,973 5/21/2019
4.0.6 3,352,768 4/11/2019
4.0.5 1,411,041 3/3/2019
4.0.4 7,652,951 12/6/2018
4.0.3 5,699,710 9/8/2018
4.0.2 3,278,132 7/8/2018
4.0.1 745,412 7/1/2018
4.0.0 1,758,793 5/30/2018
4.0.0-rc1 87,944 5/8/2018
4.0.0-preview2 99,928 4/11/2018
4.0.0-preview1 17,933 3/19/2018
3.2.7 6,519,252 2/27/2018
3.2.6 5,494,726 12/3/2017
3.2.5 6,543,171 7/25/2017
3.2.4.1 236,020 6/22/2017
3.2.4 25,789 6/13/2017
3.2.3 62,821 6/1/2017
3.2.2 1,601,481 3/21/2017
3.2.1 115,897 2/14/2017
3.2.0 68,907 1/27/2017
3.1.10 82,559 2/14/2017
3.1.9 5,823,169 11/20/2016
3.1.8 366,946 9/24/2016
3.1.7 482,731 8/6/2016
3.1.6 125,192 7/12/2016
3.1.5 273,253 6/28/2016
3.1.4 74,497 6/16/2016
3.1.3 274,315 5/30/2016
3.1.2 141,439 5/22/2016
3.1.1 212,439 5/19/2016
3.1.0 141,835 5/16/2016
3.0.8 50,863 6/16/2016
3.0.7 32,493 5/3/2016
3.0.6 8,745 5/1/2016
3.0.5 266,933 1/1/2016
3.0.4 34,257 12/6/2015
3.0.3 63,707 9/27/2015
3.0.2 35,629 9/4/2015
3.0.1 30,818 8/18/2015
3.0.0 44,353 8/7/2015
2.2.7 410,424 9/18/2015
2.2.6 47,495 8/27/2015
2.2.5 338,897 3/11/2015
2.2.4.3 45,822 2/6/2015
2.2.4.1 16,738 2/3/2015
2.2.3 345,308 11/26/2014
2.2.2 35,824 11/1/2014
2.2.1 54,573 9/24/2014
2.2.0 28,988 9/1/2014
2.1.3 75,881 4/9/2014
2.1.2 15,993 3/28/2014
2.1.1 16,301 3/21/2014
2.1.0 31,031 3/19/2014
2.0.14.3 85,112 12/21/2013
2.0.12.1 72,124 12/17/2012
2.0.11 202,279 2/6/2011