Get selected values after joining multiple tables in Entity Framework 6 using Lambda
问题 I have three tables ( simplified example for this issue ): Models are generated using EntityFramework Database-First approach. OwnerModel public partial class Owner { public Owner() { this.OwnerDogMapper= new HashSet<OwnerDogMapper>(); } public string OwnerId { get; set; } public string OwnerName { get; set; } public virtual ICollection<OwnerDogMapper> OwnerDogMapper{ get; set; } } DogTable public partial class Dog { public Dog() { this.OwnerDogMapper= new HashSet<OwnerDogMapper>(); } public