Aspire.Npgsql
9.0.0
Prefix Reserved
dotnet add package Aspire.Npgsql --version 9.0.0
NuGet\Install-Package Aspire.Npgsql -Version 9.0.0
<PackageReference Include="Aspire.Npgsql" Version="9.0.0" />
paket add Aspire.Npgsql --version 9.0.0
#r "nuget: Aspire.Npgsql, 9.0.0"
// Install Aspire.Npgsql as a Cake Addin #addin nuget:?package=Aspire.Npgsql&version=9.0.0 // Install Aspire.Npgsql as a Cake Tool #tool nuget:?package=Aspire.Npgsql&version=9.0.0
Aspire.Npgsql library
Registers NpgsqlDataSource in the DI container for connecting PostgreSQL®* database. Enables corresponding health check, metrics, logging and telemetry.
Getting started
Prerequisites
- PostgreSQL database and connection string for accessing the database.
Install the package
Install the .NET Aspire PostgreSQL Npgsql library with NuGet:
dotnet add package Aspire.Npgsql
Usage example
In the Program.cs file of your project, call the AddNpgsqlDataSource
extension method to register a NpgsqlDataSource
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddNpgsqlDataSource("postgresdb");
You can then retrieve the NpgsqlDataSource
instance using dependency injection. For example, to retrieve the data source from a Web API controller:
private readonly NpgsqlDataSource _dataSource;
public ProductsController(NpgsqlDataSource dataSource)
{
_dataSource = dataSource;
}
Configuration
The .NET Aspire PostgreSQL Npgsql component provides multiple options to configure the database connection based on the requirements and conventions of your project.
Use a connection string
When using a connection string from the ConnectionStrings
configuration section, you can provide the name of the connection string when calling builder.AddNpgsqlDataSource()
:
builder.AddNpgsqlDataSource("myConnection");
And then the connection string will be retrieved from the ConnectionStrings
configuration section:
{
"ConnectionStrings": {
"myConnection": "Host=myserver;Database=test"
}
}
See the ConnectionString documentation for more information on how to format this connection string.
Use configuration providers
The .NET Aspire PostgreSQL Npgsql component supports Microsoft.Extensions.Configuration. It loads the NpgsqlSettings
from configuration by using the Aspire:Npgsql
key. Example appsettings.json
that configures some of the options:
{
"Aspire": {
"Npgsql": {
"DisableHealthChecks": true,
"DisableTracing": true
}
}
}
Use inline delegates
Also you can pass the Action<NpgsqlSettings> configureSettings
delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddNpgsqlDataSource("postgresdb", settings => settings.DisableHealthChecks = true);
AppHost extensions
In your AppHost project, install the Aspire.Hosting.PostgreSQL
library with NuGet:
dotnet add package Aspire.Hosting.PostgreSQL
Then, in the Program.cs file of AppHost
, register a Postgres database and consume the connection using the following methods:
var postgresdb = builder.AddPostgres("pg").AddDatabase("postgresdb");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(postgresdb);
The WithReference
method configures a connection in the MyService
project named postgresdb
. In the Program.cs file of MyService
, the database connection can be consumed using:
builder.AddNpgsqlDataSource("postgresdb");
Additional documentation
- https://www.npgsql.org/doc/basic-usage.html
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
https://github.com/dotnet/aspire
*Postgres, PostgreSQL and the Slonik Logo are trademarks or registered trademarks of the PostgreSQL Community Association of Canada, and used with their permission.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- AspNetCore.HealthChecks.NpgSql (>= 8.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.11)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- Npgsql.DependencyInjection (>= 8.0.5)
- Npgsql.OpenTelemetry (>= 8.0.5)
- OpenTelemetry.Extensions.Hosting (>= 1.9.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on Aspire.Npgsql:
Repository | Stars |
---|---|
dotnet/eShop
A reference .NET application implementing an eCommerce site
|
|
oskardudycz/EventSourcing.NetCore
Examples and Tutorials of Event Sourcing in .NET
|
|
dotnet/aspire-samples
|
|
Azure-Samples/eShopOnAzure
A variant of https://github.com/dotnet/eShop that uses Azure services
|
|
bradygaster/dotnet-cloud-native-build-2023
|
Version | Downloads | Last updated |
---|---|---|
9.0.0 | 2,828 | 11/12/2024 |
9.0.0-rc.1.24511.1 | 3,811 | 10/15/2024 |
8.2.2 | 3,822 | 10/24/2024 |
8.2.1 | 7,686 | 9/26/2024 |
8.2.0 | 22,298 | 8/29/2024 |
8.1.0 | 16,196 | 7/23/2024 |
8.0.2 | 7,763 | 6/28/2024 |
8.0.1 | 27,629 | 5/21/2024 |
8.0.0 | 5,124 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 7,147 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 4,271 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 6,900 | 4/9/2024 |
8.0.0-preview.4.24156.9 | 6,772 | 3/12/2024 |
8.0.0-preview.3.24105.21 | 6,587 | 2/13/2024 |
8.0.0-preview.2.23619.3 | 8,293 | 12/20/2023 |
8.0.0-preview.1.23557.2 | 7,069 | 11/14/2023 |