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.
15 lines
385 B
C#
15 lines
385 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace EntityFrameworkCore.Jet.IntegrationTests.Model07
|
|
{
|
|
public class Context(DbContextOptions options) : DbContext(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; }
|
|
|
|
|
|
}
|
|
}
|