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/Entities.cs

32 lines
646 B
C#

using System;
using System.Collections.ObjectModel;
namespace EntityFrameworkCore.Jet.IntegrationTests.Model07
{
public class EntityA
{
public int Id { get; set; }
public Collection<EntityB> EntityBCollection { get; set; }
}
public class EntityA_Child
{
public int Id { get; set; }
public EntityA EntityA { get; set; }
public EntityC EntityC { get; set; }
}
public class EntityB
{
public int Id { get; set; }
public Collection<EntityC> EntityCCollection { get; set; }
}
public class EntityC
{
public int Id { get; set; }
}
}