Npgsql.DependencyInjection
7.0.0-preview.6
See the version list below for details.
dotnet add package Npgsql.DependencyInjection --version 7.0.0-preview.6
NuGet\Install-Package Npgsql.DependencyInjection -Version 7.0.0-preview.6
<PackageReference Include="Npgsql.DependencyInjection" Version="7.0.0-preview.6" />
paket add Npgsql.DependencyInjection --version 7.0.0-preview.6
#r "nuget: Npgsql.DependencyInjection, 7.0.0-preview.6"
// Install Npgsql.DependencyInjection as a Cake Addin
#addin nuget:?package=Npgsql.DependencyInjection&version=7.0.0-preview.6&prerelease
// Install Npgsql.DependencyInjection as a Cake Tool
#tool nuget:?package=Npgsql.DependencyInjection&version=7.0.0-preview.6&prerelease
Npgsql is the open source .NET data provider for PostgreSQL. It allows you to connect and interact with PostgreSQL server using .NET.
This package helps set up Npgsql in applications using dependency injection, notably ASP.NET applications. It allows easy configuration of your Npgsql connections and registers the appropriate services in your DI container.
For example, if using the ASP.NET minimal web API, simply use the following to register Npgsql:
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddNpgsqlDataSource("Host=pg_server;Username=test;Password=test;Database=test");
This registers a transient NpgsqlConnection
which can get injected into your controllers:
app.MapGet("/", async (NpgsqlConnection connection) =>
{
await connection.OpenAsync();
await using var command = new NpgsqlCommand("SELECT number FROM data LIMIT 1", connection);
return "Hello World: " + await command.ExecuteScalarAsync();
});
But wait! If all you want is to execute some simple SQL, just use the singleton NpgsqlDataSource
to execute a command directly:
app.MapGet("/", async (NpgsqlDataSource dataSource) =>
{
await using var command = dataSource.CreateCommand("SELECT number FROM data LIMIT 1");
return "Hello World: " + await command.ExecuteScalarAsync();
});
NpgsqlDataSource
can also come in handy when you need more than one connection:
app.MapGet("/", async (NpgsqlDataSource dataSource) =>
{
await using var connection1 = await dataSource.OpenConnectionAsync();
await using var connection2 = await dataSource.OpenConnectionAsync();
// Use the two connections...
});
Finally, the AddNpgsqlDataSource
method also accepts a lambda parameter allowing you to configure aspects of Npgsql beyond the connection string.
For more information, see the Npgsql documentation.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Npgsql (>= 7.0.0-preview.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Npgsql.DependencyInjection:
Repository | Stars |
---|---|
npgsql/efcore.pg
Entity Framework Core provider for PostgreSQL
|
|
Eventuous/eventuous
Minimalistic Event Sourcing library for .NET
|
Version | Downloads | Last updated |
---|---|---|
8.0.0-preview.4 | 388 | 5/17/2023 |
8.0.0-preview.3 | 254 | 4/24/2023 |
8.0.0-preview.2 | 228 | 3/20/2023 |
8.0.0-preview.1 | 393 | 3/3/2023 |
7.0.4 | 15,189 | 4/24/2023 |
7.0.2 | 47,790 | 2/15/2023 |
7.0.1 | 52,880 | 12/17/2022 |
7.0.0 | 6,349 | 11/9/2022 |
7.0.0-rc.2 | 977 | 10/11/2022 |
7.0.0-rc.1 | 802 | 9/16/2022 |
7.0.0-preview.7 | 424 | 8/9/2022 |
7.0.0-preview.6 | 88 | 7/13/2022 |