public class A
{
public int Id;
}
public class B : A
{
public ICollection<Car> Cars { get; set; }
}
var result = context.Include(???).As.ToList();
Ho to select all of type B and A entities and B must have included Cars navigation property.
Thanks.