Aspire.Npgsql.EntityFrameworkCore.PostgreSQL
                               
                            
                                9.5.2
                            
                        
                            
                                
                                
                                    Prefix Reserved
                                
                            
                    dotnet add package Aspire.Npgsql.EntityFrameworkCore.PostgreSQL --version 9.5.2
NuGet\Install-Package Aspire.Npgsql.EntityFrameworkCore.PostgreSQL -Version 9.5.2
<PackageReference Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.5.2" />
<PackageVersion Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.5.2" />
<PackageReference Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" />
paket add Aspire.Npgsql.EntityFrameworkCore.PostgreSQL --version 9.5.2
#r "nuget: Aspire.Npgsql.EntityFrameworkCore.PostgreSQL, 9.5.2"
#:package Aspire.Npgsql.EntityFrameworkCore.PostgreSQL@9.5.2
#addin nuget:?package=Aspire.Npgsql.EntityFrameworkCore.PostgreSQL&version=9.5.2
#tool nuget:?package=Aspire.Npgsql.EntityFrameworkCore.PostgreSQL&version=9.5.2
Aspire.Npgsql.EntityFrameworkCore.PostgreSQL library
Registers EntityFrameworkCore DbContext in the DI container for connecting PostgreSQL®* database. Enables connection pooling, retries, health check, logging and telemetry.
Getting started
Prerequisites
- PostgreSQL database and connection string for accessing the database.
Install the package
Install the .NET Aspire PostgreSQL EntityFrameworkCore Npgsql library with NuGet:
dotnet add package Aspire.Npgsql.EntityFrameworkCore.PostgreSQL
Usage example
In the AppHost.cs file of your project, call the AddNpgsqlDbContext extension method to register a DbContext for use via the dependency injection container. The method takes a connection name parameter.
builder.AddNpgsqlDbContext<MyDbContext>("postgresdb");
You can then retrieve the MyDbContext instance using dependency injection. For example, to retrieve the context from a Web API controller:
private readonly MyDbContext _context;
public ProductsController(MyDbContext context)
{
    _context = context;
}
You might also need to configure specific option of Npgsql, or register a DbContext in other ways. In this case call the EnrichNpgsqlDbContext extension method, for example:
var connectionString = builder.Configuration.GetConnectionString("postgresdb");
builder.Services.AddDbContextPool<MyDbContext>(dbContextOptionsBuilder => dbContextOptionsBuilder.UseNpgsql(connectionString));
builder.EnrichNpgsqlDbContext<MyDbContext>();
Configuration
The .NET Aspire PostgreSQL EntityFrameworkCore 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.AddNpgsqlDbContext():
builder.AddNpgsqlDbContext<MyDbContext>("myConnection");
And then the connection string will be retrieved from the ConnectionStrings configuration section:
{
  "ConnectionStrings": {
    "myConnection": "Host=myserver;Database=test"
  }
}
The EnrichNpgsqlDbContext won't make use of the ConnectionStrings configuration section since it expects a DbContext to be registered at the point it is called.
See the ConnectionString documentation for more information on how to format this connection string.
Use configuration providers
The .NET Aspire PostgreSQL EntityFrameworkCore Npgsql component supports Microsoft.Extensions.Configuration. It loads the NpgsqlEntityFrameworkCorePostgreSQLSettings from configuration by using the Aspire:Npgsql:EntityFrameworkCore:PostgreSQL key. Example appsettings.json that configures some of the options:
{
  "Aspire": {
    "Npgsql": {
      "EntityFrameworkCore": {
        "PostgreSQL": {
          "DisableHealthChecks": true,
          "DisableTracing": true
        }
      }
    }
  }
}
Use inline delegates
Also you can pass the Action<NpgsqlEntityFrameworkCorePostgreSQLSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:
    builder.AddNpgsqlDbContext<MyDbContext>("postgresdb", settings => settings.DisableHealthChecks = true);
or
    builder.EnrichNpgsqlDbContext<MyDbContext>(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 AppHost.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.AddNpgsqlDbContext<MyDbContext>("postgresdb");
Additional documentation
- https://learn.microsoft.com/ef/core/
- 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. | 
- 
                                                    net8.0- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- 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.20)
- Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore (>= 8.0.20)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.3)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- Npgsql.DependencyInjection (>= 8.0.6)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 8.0.11)
- Npgsql.OpenTelemetry (>= 8.0.6)
- OpenTelemetry.Extensions.Hosting (>= 1.9.0)
 
- 
                                                    net9.0- Microsoft.Extensions.Caching.Memory (>= 9.0.9)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.9)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 9.0.9)
- Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore (>= 9.0.9)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Options (>= 9.0.9)
- Microsoft.Extensions.Primitives (>= 9.0.9)
- Npgsql.DependencyInjection (>= 9.0.3)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 9.0.4)
- Npgsql.OpenTelemetry (>= 9.0.3)
- OpenTelemetry.Extensions.Hosting (>= 1.9.0)
 
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Aspire.Npgsql.EntityFrameworkCore.PostgreSQL:
| Package | Downloads | 
|---|---|
| Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL An Azure Database for PostgreSQL® provider for Entity Framework Core that integrates with Aspire, including connection pooling, health checks, logging, and telemetry. | |
| FlickFind.Common Package Description | |
| Inara.Abp.Microservice Addons, customizations, and extensions for the ABP Framework | |
| Core.Cqrs.CommandAndQueryHandler Package Description | |
| CustomDateTimeOffset Package Description | 
GitHub repositories (20)
Showing the top 20 popular GitHub repositories that depend on Aspire.Npgsql.EntityFrameworkCore.PostgreSQL:
| Repository | Stars | 
|---|---|
| dotnet/eShop 
                                                            A reference .NET application implementing an eCommerce site
                                                         | |
| microsoft/kernel-memory 
                                                            RAG architecture: index and query any data using LLM and natural language, track sources, show citations, asynchronous memory patterns.
                                                         | |
| abpframework/abp-samples 
                                                            Sample solutions built with the ABP Framework
                                                         | |
| dotnet/aspire-samples | |
| tonybaloney/CSnakes 
                                                            Embed Python in .NET
                                                         | |
| mehdihadeli/food-delivery-microservices 
                                                            🍔 A practical and cloud-native food delivery microservices, built with .Net Aspire, .Net 9, MassTransit, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
                                                         | |
| mehmetozkaya/Design-Microservices-Architecture-with-Patterns-Principles 
                                                            Design Microservices Architecture with Patterns & Principles. Design Microservices Architecture with Design Patterns, Principles and the Best Practices.  How to handle millions of request with designing system for high availability, high scalability, low latency, and resilience to network failures on distributed microservices.
                                                         | |
| thangchung/practical-dotnet-aspire 
                                                            The practical .NET Aspire builds on the coffeeshop app business domain
                                                         | |
| davidfowl/aspire-ai-chat-demo 
                                                            Aspire AI Chat is a full-stack chat sample that combines modern technologies to deliver a ChatGPT-like experience.
                                                         | |
| daohainam/microservice-patterns 
                                                            Microservice pattern demos (Saga, EventSourcing, CQRS...) running on .NET Aspire
                                                         | |
| Azure-Samples/eShopOnAzure 
                                                            A variant of https://github.com/dotnet/eShop that uses Azure services
                                                         | |
| J-Tech-Japan/Sekiban 
                                                            Sekiban - an Opinionated Event Sourcing and CQRS Framework using C#. It can store data into Azure Cosmos DB, AWS Dynamo DB or Postgres
                                                         | |
| dotnet-presentations/dotnet-aspire-workshop 
                                                            This .NET Aspire workshop will get you started building apps with .NET Aspire!
                                                         | |
| bradygaster/dotnet-cloud-native-build-2023 | |
| anuviswan/LearningPoint 
                                                            A repository for learning different technologies,  frameworks, features......
                                                         | |
| FritzAndFriends/SharpSite 
                                                            A basic CMS built with .NET 9 and Blazor
                                                         | |
| dotnet-presentations/eshop-app-workshop 
                                                            This workshop will teach you ASP.NET Core & .NET Aspire by building the product catalog & order placement features of the eShop reference application.
                                                         | |
| FritzAndFriends/TagzApp 
                                                            An application that discovers content on social media for hashtags
                                                         | |
| antosubash/abp-microservice 
                                                            An abp microservice sample
                                                         | |
| fdonnet/ubik_accounting 
                                                            Double entry accounting app in Net 9
                                                         | 
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 9.5.2 | 10,637 | 10/23/2025 | |
| 9.5.1 | 53,185 | 10/3/2025 | |
| 9.5.0 | 38,899 | 9/25/2025 | |
| 9.4.2 | 96,286 | 9/2/2025 | |
| 9.4.1 | 78,639 | 8/12/2025 | |
| 9.4.0 | 88,772 | 7/29/2025 | |
| 9.3.1 | 154,059 | 6/10/2025 | |
| 9.3.0 | 145,511 | 5/19/2025 | |
| 9.2.1 | 81,225 | 4/24/2025 | |
| 9.2.0 | 73,908 | 4/10/2025 | |
| 9.1.0 | 191,617 | 2/25/2025 | |
| 9.0.0 | 220,827 | 11/22/2024 | |
| 9.0.0-rc.2.24551.3 | 31,092 | 11/12/2024 | |
| 9.0.0-rc.1.24511.1 | 8,504 | 10/15/2024 | |
| 8.2.2 | 157,877 | 10/24/2024 | |
| 8.2.1 | 80,179 | 9/26/2024 | |
| 8.2.0 | 120,778 | 8/29/2024 | |
| 8.1.0 | 83,092 | 7/23/2024 | |
| 8.0.2 | 56,093 | 6/28/2024 | |
| 8.0.1 | 93,852 | 5/21/2024 | |
| 8.0.0 | 41,845 | 5/21/2024 | |
| 8.0.0-preview.7.24251.11 | 12,062 | 5/7/2024 | |
| 8.0.0-preview.6.24214.1 | 9,050 | 4/23/2024 | |
| 8.0.0-preview.5.24201.12 | 14,135 | 4/9/2024 | |
| 8.0.0-preview.4.24156.9 | 14,334 | 3/12/2024 | |
| 8.0.0-preview.3.24105.21 | 23,753 | 2/13/2024 | |
| 8.0.0-preview.2.23619.3 | 19,513 | 12/20/2023 | |
| 8.0.0-preview.1.23557.2 | 8,863 | 11/14/2023 |