public void FetchAppointments(FetchDataEventArgs args) { using (var dbContext = new SchedulingContext()) { args.Result = dbContext.AppointmentEntities.Where(args.GetFetchExpression <AppointmentEntity>()).ToArray(); } }
public void FetchAppointments(FetchDataEventArgs args) { args.Result = dbContext.AppointmentEntities.Where(args.GetFetchExpression <AppointmentEntity>()).ToArray(); }