Beispiel #1
0
 public Pupil[] GetPupilsByRegistrationTypeWithSchool(Registrationtype registrationtype) =>
 _dbContext.Pupils
 .Include(p => p.School)
 .ThenInclude(s => s.City)
 .Where(p => p.Registrationtype == registrationtype)
 .ToArray();
Beispiel #2
0
 public Pupil[] GetPupilsByRegistrationTypeWithSchool(Registrationtype registrationtype) =>
 GetAll()
 .Where(p => p.Registrationtype == registrationtype)
 .ToArray();
Beispiel #3
0
 public Pupil[] GetPupilsByRegistrationTypeWithSchool(Registrationtype registrationtype)
 {
     throw new NotImplementedException();
 }