using Microsoft.AspNetCore.DataProtection.EntityFrameworkCore; namespace PostFundManagement.Infrastructure.Database; 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")); } }