using Microsoft.EntityFrameworkCore; namespace EntityFrameworkCore.Jet.IntegrationTests.Model07 { public class Context(DbContextOptions options) : DbContext(options) { public DbSet As { get; set; } public DbSet Bs { get; set; } public DbSet Cs { get; set; } public DbSet Acs { get; set; } } }