npgsql-vnext - Npgsql 9.0.0-preview.1-ci.20240415T074200+sha.058894067

Npgsql is the open source .NET data provider for PostgreSQL.

PM> Install-Package Npgsql -Version 9.0.0-preview.1-ci.20240415T074200 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> nuget.exe install Npgsql -Version 9.0.0-preview.1-ci.20240415T074200 -Source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard

> dotnet add package Npgsql --version 9.0.0-preview.1-ci.20240415T074200 --source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

Copy to clipboard
<PackageReference Include="Npgsql" Version="9.0.0-preview.1-ci.20240415T074200" />
Copy to clipboard
source https://www.myget.org/F/npgsql-vnext/api/v3/index.json

nuget Npgsql  ~> 9.0.0-preview.1-ci.20240415T074200
Copy to clipboard

> choco install Npgsql --version 9.0.0-preview.1-ci.20240415T074200 --source https://www.myget.org/F/npgsql-vnext/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "npgsql-vnext" -SourceLocation "https://www.myget.org/F/npgsql-vnext/api/v2"
Install-Module -Name "Npgsql" -RequiredVersion "9.0.0-preview.1-ci.20240415T074200" -Repository "npgsql-vnext" -AllowPreRelease
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/npgsql-vnext/api/v2/symbolpackage/


Npgsql - the .NET data provider for PostgreSQL

stable next patch daily builds (vnext) build gitter

What is Npgsql?

Npgsql is the open source .NET data provider for PostgreSQL. It allows you to connect and interact with PostgreSQL server using .NET.

For the full documentation, please visit the Npgsql website. For the Entity Framework Core provider that works with this provider, see Npgsql.EntityFrameworkCore.PostgreSQL.

Quickstart

Here's a basic code snippet to get you started:

using Npgsql;

var connString = "Host=myserver;Username=mylogin;Password=mypass;Database=mydatabase";

var dataSourceBuilder = new NpgsqlDataSourceBuilder(connString);
var dataSource = dataSourceBuilder.Build();

var conn = await dataSource.OpenConnectionAsync();

// 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 at https://www.npgsql.org.

  • .NETFramework 6.0
    • Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
    • System.Diagnostics.DiagnosticSource (>= 8.0.0)
    • System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
    • System.Text.Json (>= 8.0.0)
  • .NETFramework 8.0
    • Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
  • .NETFramework 6.0: 6.0.0.0
  • .NETFramework 8.0: 8.0.0.0

Owners

Shay Rojansky

Authors

Shay Rojansky, Nikita Kazmin, Brar Piening, Nino Floris, Yoh Deadfall, Austin Drenski, Emil Lenngren, Francisco Figueiredo Jr., Kenji Uno

Project URL

https://github.com/npgsql/npgsql

License

Unknown

Tags

npgsql postgresql postgres ado ado.net database sql

Info

10 total downloads
0 downloads for version 9.0.0-preview.1-ci.20240415T074200+sha.058894067
Download (1.09 MB)
Download symbols (339.84 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
9.0.0-preview.1-ci.20240415T074200+sha.058894067 1.09 MB Mon, 15 Apr 2024 07:42:56 GMT 0
9.0.0-preview.1-ci.20240413T184129+sha.5b380fb55 1.09 MB Sat, 13 Apr 2024 18:42:11 GMT 0
9.0.0-preview.1-ci.20240412T181607+sha.c86e5ef4f 1.09 MB Fri, 12 Apr 2024 18:16:44 GMT 0
9.0.0-preview.1-ci.20240329T214856+sha.5be5aeab7 1.09 MB Fri, 29 Mar 2024 21:49:35 GMT 0
9.0.0-preview.1-ci.20240328T185559+sha.74178a484 1.09 MB Thu, 28 Mar 2024 18:56:43 GMT 0
9.0.0-preview.1-ci.20240328T183806+sha.f3205151b 1.09 MB Thu, 28 Mar 2024 18:40:26 GMT 0
9.0.0-preview.1-ci.20240328T144631+sha.5fc494edb 1.09 MB Thu, 28 Mar 2024 14:47:11 GMT 0
9.0.0-preview.1-ci.20240327T193101+sha.132a42dc0 1.09 MB Wed, 27 Mar 2024 19:31:37 GMT 0
9.0.0-preview.1-ci.20240327T192119+sha.5f24dc611 1.09 MB Wed, 27 Mar 2024 19:21:57 GMT 0
9.0.0-preview.1-ci.20240327T181548+sha.f6d8b1bea 1.09 MB Wed, 27 Mar 2024 18:16:52 GMT 0
9.0.0-preview.1-ci.20240325T214328+sha.6754cdc7a 1.09 MB Mon, 25 Mar 2024 21:44:05 GMT 0
9.0.0-preview.1-ci.20240325T211747+sha.cda190b34 1.09 MB Mon, 25 Mar 2024 21:18:24 GMT 0
9.0.0-preview.1-ci.20240325T160903+sha.4c9ea33ae 1.09 MB Mon, 25 Mar 2024 16:09:50 GMT 0
9.0.0-preview.1-ci.20240322T135507+sha.56ee2f0c8 1.09 MB Fri, 22 Mar 2024 13:55:47 GMT 0
9.0.0-preview.1-ci.20240317T212253+sha.4b7bf6b20 1.09 MB Sun, 17 Mar 2024 21:23:34 GMT 0
9.0.0-preview.1-ci.20240317T183818+sha.d86808982 1.09 MB Sun, 17 Mar 2024 18:38:52 GMT 0
9.0.0-preview.1-ci.20240317T174733+sha.bc878a2c6 1.09 MB Sun, 17 Mar 2024 17:48:14 GMT 0
9.0.0-preview.1-ci.20240316T173230+sha.cb9d849db 1.09 MB Sat, 16 Mar 2024 17:33:10 GMT 0
9.0.0-preview.1-ci.20240316T153600+sha.1d13ccd2f 1.09 MB Sat, 16 Mar 2024 15:36:44 GMT 0
9.0.0-preview.1-ci.20240315T105126+sha.fbbb28245 1.09 MB Fri, 15 Mar 2024 10:52:02 GMT 0
9.0.0-preview.1-ci.20240312T175023+sha.f8ad54c68 1.09 MB Tue, 12 Mar 2024 17:51:01 GMT 0
9.0.0-preview.1-ci.20240311T171105+sha.76ada6b85 1.09 MB Mon, 11 Mar 2024 17:11:49 GMT 0
9.0.0-preview.1-ci.20240310T200547+sha.3ceb33f9b 1.09 MB Sun, 10 Mar 2024 20:06:29 GMT 0
9.0.0-preview.1-ci.20240305T134242+sha.da5cc3789 1.09 MB Tue, 05 Mar 2024 13:43:31 GMT 1
9.0.0-preview.1-ci.20240305T133728+sha.b9811a2f8 1.09 MB Tue, 05 Mar 2024 13:38:07 GMT 0
9.0.0-preview.1-ci.20240305T125848+sha.709e762d7 1.09 MB Tue, 05 Mar 2024 12:59:38 GMT 0
9.0.0-preview.1-ci.20240228T234911+sha.a356e286f 1.09 MB Wed, 28 Feb 2024 23:49:50 GMT 0
9.0.0-preview.1-ci.20240226T183042+sha.b48677e16 1.09 MB Mon, 26 Feb 2024 18:31:25 GMT 0
9.0.0-preview.1-ci.20240226T182838+sha.1a1dd66ae 1.09 MB Mon, 26 Feb 2024 18:29:16 GMT 0
9.0.0-preview.1-ci.20240217T090711+sha.11c8229ed 1.09 MB Sat, 17 Feb 2024 09:07:58 GMT 0
9.0.0-preview.1-ci.20240217T081217+sha.727532dd2 1.09 MB Sat, 17 Feb 2024 08:13:00 GMT 0
9.0.0-preview.1-ci.20240215T000503+sha.1b138216b 1.09 MB Thu, 15 Feb 2024 00:05:52 GMT 0
9.0.0-preview.1-ci.20240209T180505+sha.786ce89e1 1.09 MB Fri, 09 Feb 2024 18:05:51 GMT 0
9.0.0-preview.1-ci.20240208T230944+sha.f309c3f1a 1.09 MB Thu, 08 Feb 2024 23:10:31 GMT 0
9.0.0-preview.1-ci.20240207T175117+sha.4f80dd189 1.09 MB Wed, 07 Feb 2024 17:52:02 GMT 0
9.0.0-preview.1-ci.20240207T173405+sha.1ad0e416f 1.09 MB Wed, 07 Feb 2024 17:34:53 GMT 0
9.0.0-preview.1-ci.20240206T222454+sha.dd05935f0 1.09 MB Tue, 06 Feb 2024 22:25:36 GMT 0
9.0.0-preview.1-ci.20240205T190241+sha.7f8c25737 1.09 MB Mon, 05 Feb 2024 19:03:32 GMT 0
9.0.0-preview.1-ci.20240131T215454+sha.882265627 1.09 MB Wed, 31 Jan 2024 21:55:39 GMT 3
9.0.0-preview.1-ci.20240131T215114+sha.5b998e83f 1.09 MB Wed, 31 Jan 2024 21:51:59 GMT 0
9.0.0-preview.1-ci.20240131T214537+sha.fb2bceb40 1.09 MB Wed, 31 Jan 2024 21:46:16 GMT 0
9.0.0-preview.1-ci.20240131T171227+sha.c51e6d072 1.09 MB Wed, 31 Jan 2024 17:13:14 GMT 0
9.0.0-preview.1-ci.20240131T162242+sha.43b3d0fc1 1.09 MB Wed, 31 Jan 2024 16:23:29 GMT 0
9.0.0-preview.1-ci.20240129T213027+sha.02b872632 1.09 MB Mon, 29 Jan 2024 21:31:13 GMT 0
9.0.0-preview.1-ci.20240125T134133+sha.7087812c0 1.09 MB Thu, 25 Jan 2024 13:42:19 GMT 1
9.0.0-preview.1-ci.20240124T230604+sha.010878c69 1.09 MB Wed, 24 Jan 2024 23:06:49 GMT 1
9.0.0-preview.1-ci.20240124T220118+sha.d85234eb7 1.09 MB Wed, 24 Jan 2024 22:02:02 GMT 1
9.0.0-preview.1-ci.20240124T215900+sha.e1165ea7c 1.09 MB Wed, 24 Jan 2024 21:59:45 GMT 1
9.0.0-preview.1-ci.20240124T215302+sha.dffa843e9 1.09 MB Wed, 24 Jan 2024 21:53:47 GMT 1
9.0.0-preview.1-ci.20240124T210146+sha.c1574f500 1.09 MB Wed, 24 Jan 2024 21:02:36 GMT 1