Npgsql 7.0.0-preview.5
Prefix ReservedSee the version list below for details.
dotnet add package Npgsql --version 7.0.0-preview.5
NuGet\Install-Package Npgsql -Version 7.0.0-preview.5
<PackageReference Include="Npgsql" Version="7.0.0-preview.5" />
paket add Npgsql --version 7.0.0-preview.5
#r "nuget: Npgsql, 7.0.0-preview.5"
// Install Npgsql as a Cake Addin #addin nuget:?package=Npgsql&version=7.0.0-preview.5&prerelease // Install Npgsql as a Cake Tool #tool nuget:?package=Npgsql&version=7.0.0-preview.5&prerelease
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. |
-
.NETCoreApp 3.1
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.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)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.1)
- System.Collections.Immutable (>= 6.0.0)
- System.Diagnostics.DiagnosticSource (>= 6.0.0)
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Text.Json (>= 6.0.5)
- System.Threading.Channels (>= 6.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.1
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.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.5)
- System.Threading.Channels (>= 6.0.0)
-
net5.0
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net6.0
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.1)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
NuGet packages (1.6K)
Showing the top 5 NuGet packages that depend on Npgsql:
Package | Downloads |
---|---|
Npgsql.EntityFrameworkCore.PostgreSQL
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
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 (245)
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 | |
---|---|---|---|
8.0.5 | 614,342 | 10/13/2024 | |
8.0.4 | 1,951,772 | 9/10/2024 | |
8.0.3 | 17,894,530 | 5/9/2024 | |
8.0.2 | 9,830,151 | 2/10/2024 | |
8.0.1 | 2,774,989 | 12/4/2023 | |
8.0.0 | 10,101,416 | 11/21/2023 | |
8.0.0-rc.2 | 202,447 | 10/11/2023 | |
8.0.0-preview.4 | 291,325 | 5/17/2023 | |
8.0.0-preview.3 | 56,518 | 4/24/2023 | |
8.0.0-preview.2 | 52,510 | 3/20/2023 | |
8.0.0-preview.1 | 75,978 | 3/3/2023 | |
7.0.8 | 68,567 | 9/10/2024 | |
7.0.7 | 2,040,908 | 5/9/2024 | |
7.0.6 | 11,597,792 | 9/14/2023 | |
7.0.4 | 17,987,554 | 4/24/2023 | |
7.0.2 | 10,385,986 | 2/15/2023 | |
7.0.1 | 7,471,099 | 12/17/2022 | |
7.0.0 | 5,831,995 | 11/9/2022 | |
7.0.0-rc.2 | 75,558 | 10/11/2022 | |
7.0.0-rc.1 | 37,626 | 9/16/2022 | |
7.0.0-preview.7 | 40,358 | 8/9/2022 | |
7.0.0-preview.6 | 35,820 | 7/13/2022 | |
7.0.0-preview.5 | 18,278 | 6/19/2022 | |
7.0.0-preview.4 | 40,580 | 5/11/2022 | |
7.0.0-preview.3 | 43,540 | 4/19/2022 | |
7.0.0-preview.2 | 43,571 | 3/16/2022 | |
7.0.0-preview.1 | 4,683,379 | 2/17/2022 | |
6.0.12 | 62,725 | 9/10/2024 | |
6.0.11 | 2,946,022 | 5/9/2024 | |
6.0.10 | 2,376,526 | 9/14/2023 | |
6.0.9 | 2,891,446 | 2/15/2023 | |
6.0.8 | 8,624,148 | 12/17/2022 | |
6.0.7 | 13,622,378 | 9/16/2022 | |
6.0.6 | 11,150,522 | 8/4/2022 | |
6.0.5 | 8,215,818 | 6/19/2022 | |
6.0.4 | 11,266,670 | 4/19/2022 | |
6.0.3 | 13,796,402 | 1/27/2022 | |
6.0.2 | 5,339,034 | 12/20/2021 | |
6.0.1 | 8,217,725 | 12/3/2021 | |
6.0.0 | 21,942,867 | 11/9/2021 | |
6.0.0-rc.2 | 143,032 | 10/14/2021 | |
6.0.0-rc.1 | 125,916 | 9/24/2021 | |
6.0.0-preview7 | 41,880 | 8/16/2021 | |
6.0.0-preview6 | 11,466 | 7/31/2021 | |
6.0.0-preview5 | 63,681 | 7/1/2021 | |
6.0.0-preview4 | 60,625 | 5/27/2021 | |
6.0.0-preview3 | 63,603 | 4/15/2021 | |
6.0.0-preview2 | 69,421 | 3/11/2021 | |
5.0.18 | 639,869 | 5/9/2024 | |
5.0.17 | 143,777 | 9/14/2023 | |
5.0.16 | 300,698 | 2/15/2023 | |
5.0.15 | 471,956 | 9/16/2022 | |
5.0.14 | 358,660 | 6/19/2022 | |
5.0.13 | 432,192 | 4/26/2022 | |
5.0.12 | 843,100 | 2/1/2022 | |
5.0.11 | 2,281,316 | 11/12/2021 | |
5.0.10 | 10,219,403 | 9/15/2021 | |
5.0.7 | 13,913,458 | 6/13/2021 | |
5.0.5 | 4,921,101 | 5/11/2021 | |
5.0.4 | 7,838,389 | 3/25/2021 | |
5.0.3 | 6,567,531 | 1/26/2021 | |
5.0.2 | 4,514,243 | 1/19/2021 | |
5.0.1.1 | 2,734,479 | 12/12/2020 | |
5.0.0 | 4,782,774 | 11/15/2020 | |
4.1.14 | 146,213 | 5/18/2024 | |
4.1.13 | 378,338 | 5/9/2024 | |
4.1.12 | 848,000 | 6/19/2022 | |
4.1.11 | 94,634 | 4/26/2022 | |
4.1.10 | 754,144 | 11/12/2021 | |
4.1.9 | 3,323,999 | 4/6/2021 | |
4.1.8 | 3,184,401 | 1/21/2021 | |
4.1.7 | 464,786 | 12/12/2020 | |
4.1.6 | 1,142,620 | 11/15/2020 | |
4.1.5 | 5,423,010 | 9/28/2020 | |
4.1.4 | 4,174,152 | 7/19/2020 | |
4.1.3.1 | 20,182,946 | 2/20/2020 | |
4.1.3 | 7,938,060 | 1/31/2020 | |
4.1.2 | 5,618,743 | 11/14/2019 | |
4.1.1 | 4,208,485 | 10/2/2019 | |
4.1.0 | 688,370 | 9/26/2019 | |
4.0.17 | 23,700 | 6/10/2024 | |
4.0.16 | 34,920 | 5/18/2024 | |
4.0.14 | 37,723 | 5/9/2024 | |
4.0.13 | 125,490 | 6/19/2022 | |
4.0.12 | 103,569 | 5/16/2021 | |
4.0.11 | 633,449 | 7/19/2020 | |
4.0.10 | 5,860,900 | 9/9/2019 | |
4.0.9 | 1,120,024 | 8/14/2019 | |
4.0.8 | 943,756 | 7/18/2019 | |
4.0.7 | 7,100,685 | 5/21/2019 | |
4.0.6 | 3,524,225 | 4/11/2019 | |
4.0.5 | 1,538,111 | 3/3/2019 | |
4.0.4 | 7,952,041 | 12/6/2018 | |
4.0.3 | 5,824,235 | 9/8/2018 | |
4.0.2 | 3,451,853 | 7/8/2018 | |
4.0.1 | 756,954 | 7/1/2018 | |
4.0.0 | 1,817,812 | 5/30/2018 | |
4.0.0-rc1 | 93,356 | 5/8/2018 | |
4.0.0-preview2 | 108,994 | 4/11/2018 | |
4.0.0-preview1 | 18,540 | 3/19/2018 | |
3.2.7 | 7,782,757 | 2/27/2018 | |
3.2.6 | 5,714,473 | 12/3/2017 | |
3.2.5 | 7,035,960 | 7/25/2017 | |
3.2.4.1 | 241,001 | 6/22/2017 | |
3.2.4 | 26,654 | 6/13/2017 | |
3.2.3 | 65,593 | 6/1/2017 | |
3.2.2 | 1,641,061 | 3/21/2017 | |
3.2.1 | 121,706 | 2/14/2017 | |
3.2.0 | 73,141 | 1/27/2017 | |
3.1.10 | 86,854 | 2/14/2017 | |
3.1.9 | 7,250,214 | 11/20/2016 | |
3.1.8 | 404,025 | 9/24/2016 | |
3.1.7 | 514,545 | 8/6/2016 | |
3.1.6 | 131,391 | 7/12/2016 | |
3.1.5 | 317,562 | 6/28/2016 | |
3.1.4 | 78,768 | 6/16/2016 | |
3.1.3 | 279,471 | 5/30/2016 | |
3.1.2 | 149,345 | 5/22/2016 | |
3.1.1 | 230,268 | 5/19/2016 | |
3.1.0 | 167,074 | 5/16/2016 | |
3.0.8 | 59,884 | 6/16/2016 | |
3.0.7 | 36,389 | 5/3/2016 | |
3.0.6 | 9,604 | 5/1/2016 | |
3.0.5 | 285,519 | 1/1/2016 | |
3.0.4 | 35,875 | 12/6/2015 | |
3.0.3 | 69,773 | 9/27/2015 | |
3.0.2 | 44,601 | 9/4/2015 | |
3.0.1 | 31,888 | 8/18/2015 | |
3.0.0 | 49,108 | 8/7/2015 | |
2.2.7 | 442,326 | 9/18/2015 | |
2.2.6 | 55,265 | 8/27/2015 | |
2.2.5 | 354,420 | 3/11/2015 | |
2.2.4.3 | 51,582 | 2/6/2015 | |
2.2.4.1 | 18,306 | 2/3/2015 | |
2.2.3 | 385,646 | 11/26/2014 | |
2.2.2 | 40,503 | 11/1/2014 | |
2.2.1 | 59,294 | 9/24/2014 | |
2.2.0 | 30,405 | 9/1/2014 | |
2.1.3 | 79,010 | 4/9/2014 | |
2.1.2 | 17,029 | 3/28/2014 | |
2.1.1 | 16,850 | 3/21/2014 | |
2.1.0 | 32,553 | 3/19/2014 | |
2.0.14.3 | 90,969 | 12/21/2013 | |
2.0.12.1 | 75,029 | 12/17/2012 | |
2.0.11 | 250,417 | 2/6/2011 |