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