Exemple #1
0
 public async Task <T> GetEntityById(int id)
 {
     return(await _context.Set <T>()
            .FindAsync(id));
 }