using System; using Microsoft.EntityFrameworkCore; namespace EntityFrameworkCore.Jet.IntegrationTests.Model04 { public class CarsContext(DbContextOptions options) : DbContext(options) { public DbSet Cars { get; set; } public DbSet Persons { get; set; } } }