You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EntityFrameworkCore.Jet/test/EFCore.Jet.IntegrationTests/Model07/Context.cs

18 lines
429 B
C#

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