using Microsoft.EntityFrameworkCore; using New.Infrastructure.Persistence.Entities; namespace New.Infrastructure.Persistence; public sealed class NewDbContext(DbContextOptions options) : DbContext(options) { public DbSet RegistrationApplications => Set(); public DbSet LegacyOwnership => Set(); protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.ApplyConfigurationsFromAssembly(typeof(NewDbContext).Assembly); } }