namespace LiteCharms.Features.Postgres; public sealed class DataProtectionDbContext(DbContextOptions options) : DbContext(options), IDataProtectionKeyContext { public DbSet DataProtectionKeys { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity(entity => entity.ToTable(nameof(DataProtectionKeys), schema: "security")); } }