Aspire.Npgsql.EntityFrameworkCore.PostgreSQL 8.0.0-preview.3.24105.21

Aspire.Npgsql.EntityFrameworkCore.PostgreSQL library

Registers EntityFrameworkCore DbContext in the DI container for connecting PostgreSQLĀ®* database. Enables connection pooling, 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 Program.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;
}

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"
  }
}

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": {
          "DbContextPooling": true,
          "HealthChecks": false,
          "Tracing": false
        }
      }
    }
  }
}

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.HealthChecks = false);

AppHost extensions

In your AppHost project, 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

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.

No packages depend on Aspire.Npgsql.EntityFrameworkCore.PostgreSQL.

Version Downloads Last updated
9.3.1 3 6/11/2025
9.3.0 2 6/10/2025
9.2.1 2 6/10/2025
9.2.0 1 6/10/2025
9.1.0 2 6/10/2025
9.0.0 2 6/11/2025
9.0.0-rc.2.24551.3 2 6/10/2025
9.0.0-rc.1.24511.1 2 6/10/2025
8.2.2 2 6/10/2025
8.2.1 2 6/10/2025
8.2.0 1 6/10/2025
8.1.0 3 6/8/2025
8.0.2 2 6/14/2025
8.0.1 1 6/10/2025
8.0.0 2 6/10/2025
8.0.0-preview.7.24251.11 2 6/10/2025
8.0.0-preview.6.24214.1 1 6/10/2025
8.0.0-preview.5.24201.12 2 6/10/2025
8.0.0-preview.4.24156.9 1 6/15/2025
8.0.0-preview.3.24105.21 2 6/10/2025
8.0.0-preview.2.23619.3 3 6/10/2025
8.0.0-preview.1.23557.2 1 6/10/2025