コード例 #1
0
ファイル: SchoolQueries.cs プロジェクト: anbro/hst
 public static string GetSchoolName(this IQueryable<School> schools, User user)
 {
     return schools.Where(s => s.Users.Select(u => u.Id).Contains(user.Id)).FirstOrDefault().SchoolName;
 }
コード例 #2
0
ファイル: StudentQueries.cs プロジェクト: anbro/hst
 public static IQueryable<Student> GetStudentsByUser(this IQueryable<Student> students, User user)
 {
     return students.Where(s => s.AssociatedUsers.Select(u => u.Id).Contains(user.Id));
 }