using Microsoft.EntityFrameworkCore; namespace Example.Data; public sealed class PostgresApplicationDbContext : ApplicationDbContext { public PostgresApplicationDbContext(DbContextOptions options) : base(options) { } }