Include mapping table property reference with LINQ query

Advertisements I have following Schema in EF Code First Architecture. Class Teacher public class Teacher { [Key] public int Teacher_PK { get; set; } public string Name { get; set; } public int Age { get; set; } public virtual ICollection<TeacherClassroom> TeacherClassroom { get; set; } // I have added this to access classroom class’s… Read More Include mapping table property reference with LINQ query