using Microsoft.EntityFrameworkCore; namespace EFCore.Jet.Integration.Test.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; } } }