Npgsql 6.0.1
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
Details
Advisory: https://github.com/advisories/GHSA-x9vc-6hfv-hg8c | Severity: high |
dotnet add package Npgsql --version 6.0.1
NuGet\Install-Package Npgsql -Version 6.0.1
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="6.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql --version 6.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Npgsql, 6.0.1"
#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=6.0.1 // Install Npgsql as a Cake Tool #tool nuget:?package=Npgsql&version=6.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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.
Related packages
- The Entity Framework Core provider that works with this provider is Npgsql.EntityFrameworkCore.PostgreSQL.
- Spatial plugin to work with PostgreSQL PostGIS: Npgsql.NetTopologySuite
- NodaTime plugin to use better date/time types with PostgreSQL: Npgsql.NodaTime
- OpenTelemetry support can be set up with Npgsql.OpenTelemetry
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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 was computed. 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 was computed. 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 is compatible. |
.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.
-
.NETCoreApp 3.1
- System.Diagnostics.DiagnosticSource (>= 6.0.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 6.0.0)
- Microsoft.Bcl.HashCode (>= 1.1.1)
- System.Collections.Immutable (>= 6.0.0)
- System.Diagnostics.DiagnosticSource (>= 6.0.0)
- System.Memory (>= 4.5.4)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Text.Json (>= 6.0.0)
- System.Threading.Channels (>= 6.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.1
- System.Collections.Immutable (>= 6.0.0)
- System.Diagnostics.DiagnosticSource (>= 6.0.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Text.Json (>= 6.0.0)
- System.Threading.Channels (>= 6.0.0)
-
net5.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Npgsql:
Package | Downloads |
---|---|
YesSql.Provider.PostgreSql
Package Description |
GitHub repositories (248)
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.
|
|
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
|
|
dotnet/orleans
Cloud Native application framework for .NET
|
|
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
|
Version | Downloads | Last updated | |
---|---|---|---|
6.0.1 | 65 | 9/19/2022 | |
6.0.0 | 67 | 9/19/2022 | |
5.0.3 | 0 | 3/8/2021 | |
5.0.2 | 0 | 3/8/2021 | |
5.0.1.1 | 0 | 3/8/2021 | |
5.0.1 | 0 | 3/8/2021 | |
5.0.0 | 32,424 | 3/8/2021 | |
5.0.0-preview1 | 0 | 3/8/2021 | |
5.0.0-alpha1 | 0 | 3/8/2021 | |
4.1.8 | 0 | 3/8/2021 | |
4.1.7 | 0 | 3/8/2021 | |
4.1.6 | 0 | 3/8/2021 | |
4.1.5 | 0 | 3/8/2021 | |
4.1.4 | 0 | 3/8/2021 | |
4.1.3.1 | 0 | 3/8/2021 | |
4.1.3 | 2 | 3/8/2021 | |
4.1.2 | 2 | 3/8/2021 | |
4.1.1 | 0 | 3/8/2021 | |
4.1.0 | 0 | 3/8/2021 | |
4.1.0-preview2 | 0 | 3/8/2021 | |
4.1.0-preview1 | 0 | 3/8/2021 | |
4.0.11 | 0 | 3/8/2021 | |
4.0.10 | 0 | 3/8/2021 | |
4.0.9 | 0 | 3/8/2021 | |
4.0.8 | 0 | 3/8/2021 | |
4.0.7 | 4 | 3/8/2021 | |
4.0.6 | 1 | 3/8/2021 | |
4.0.5 | 1 | 3/8/2021 | |
4.0.4 | 2 | 3/8/2021 | |
4.0.3 | 1 | 3/8/2021 | |
4.0.2 | 0 | 3/8/2021 | |
4.0.1 | 0 | 3/8/2021 | |
4.0.0 | 9,463 | 3/8/2021 | |
4.0.0-rc1 | 0 | 3/8/2021 | |
4.0.0-preview2 | 0 | 3/8/2021 | |
4.0.0-preview1 | 0 | 3/8/2021 | |
3.2.7 | 6 | 3/8/2021 | |
3.2.6 | 0 | 3/8/2021 | |
3.2.5 | 53 | 3/8/2021 | |
3.2.4.1 | 4 | 3/8/2021 | |
3.2.4 | 0 | 3/8/2021 | |
3.2.3 | 3 | 3/8/2021 | |
3.2.2 | 17 | 3/8/2021 | |
3.2.1 | 1 | 3/8/2021 | |
3.2.0 | 0 | 3/8/2021 | |
3.2.0-beta1 | 0 | 3/8/2021 | |
3.1.10 | 0 | 3/8/2021 | |
3.1.9 | 37,849 | 3/8/2021 | |
3.1.8 | 12 | 3/8/2021 | |
3.1.7 | 4 | 3/8/2021 | |
3.1.6 | 2 | 3/8/2021 | |
3.1.5 | 25 | 3/8/2021 | |
3.1.4 | 0 | 3/8/2021 | |
3.1.3 | 10 | 3/8/2021 | |
3.1.2 | 0 | 3/8/2021 | |
3.1.1 | 0 | 3/8/2021 | |
3.1.0 | 2 | 3/8/2021 | |
3.1.0-beta0001 | 0 | 3/8/2021 | |
3.1.0-alpha6 | 805 | 12/7/2015 | |
3.1.0-alpha5 | 1,325 | 11/18/2015 | |
3.1.0-alpha4 | 73 | 11/18/2015 | |
3.1.0-alpha3 | 1,546 | 10/16/2015 | |
3.1.0-alpha2 | 179 | 10/16/2015 | |
3.1.0-alpha1 | 1,078 | 9/6/2015 | |
3.0.8 | 0 | 3/8/2021 | |
3.0.7 | 0 | 3/8/2021 | |
3.0.6 | 0 | 3/8/2021 | |
3.0.5 | 4 | 3/8/2021 | |
3.0.4 | 3,674 | 12/6/2015 | |
3.0.3 | 16,788 | 9/27/2015 | |
3.0.2 | 7,558 | 9/4/2015 | |
3.0.1 | 6,949 | 8/18/2015 | |
3.0.0 | 4,191 | 8/7/2015 | |
3.0.0-rc0002 | 594 | 7/17/2015 | |
3.0.0-rc0001 | 193 | 7/12/2015 | |
3.0.0-beta0001 | 831 | 5/25/2015 | |
2.2.7 | 7,832 | 9/18/2015 | |
2.2.6 | 2,980 | 8/27/2015 | |
2.2.5 | 48,577 | 3/11/2015 | |
2.2.4.3 | 10,063 | 2/6/2015 | |
2.2.4.1 | 4,425 | 2/3/2015 | |
2.2.3 | 19,721 | 11/26/2014 | |
2.2.2 | 7,030 | 11/1/2014 | |
2.2.1 | 8,428 | 9/24/2014 | |
2.2.0 | 4,934 | 9/1/2014 | |
2.2.0-rc2 | 762 | 8/17/2014 | |
2.2.0-rc1 | 330 | 8/5/2014 | |
2.2.0-beta1 | 223 | 7/23/2014 | |
2.1.3 | 16,202 | 4/9/2014 | |
2.1.2 | 3,132 | 3/28/2014 | |
2.1.1 | 1,803 | 3/21/2014 | |
2.1.0 | 824 | 3/19/2014 | |
2.1.0-rc1 | 733 | 2/9/2014 | |
2.1.0-beta1 | 1,342 | 12/26/2013 | |
2.0.14.3 | 21,670 | 12/21/2013 | |
2.0.13-beta1 | 1,533 | 7/14/2013 | |
2.0.12.1 | 27,200 | 12/17/2012 | |
2.0.11 | 21,497 | 2/6/2011 |