Exemplo n.º 1
0
 public GenericRepository(WebDataContext context)
 {
     _context = context;
     _dbSet   = context.Set <TEntity>();
 }
Exemplo n.º 2
0
 public async Task <T> FindAsync(object id)
 {
     return(await Context.Set <T>().FindAsync(id));
 }