예제 #1
0
 public async Task <IEnumerable <Punch> > GetAll() => await _context
 .Set <Punch>()
 .AsNoTracking()
 .ToListAsync();
예제 #2
0
 public async Task <IEnumerable <Employee> > GetAll() => await _context
 .Set <Employee>()
 .AsNoTracking()
 .ToListAsync();