Files
DevOps/5/Data/PostgresApplicationDbContext.cs
2026-04-07 20:35:53 +02:00

12 lines
271 B
C#

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