public async Task <T> Update(int id, T entity) { using (EsportMgmtDatabaseContext context = _context.CreateDbContext()) { entity.ID = id; context.Set <T>().Update(entity); await context.SaveChangesAsync(); return(entity); } }
public async Task <T> Create(T entity) { using (EsportMgmtDatabaseContext context = _context.CreateDbContext()) { var createdEntity = await context.Set <T>().AddAsync(entity); await context.SaveChangesAsync(); return(createdEntity.Entity); } }
public async Task <bool> Delete(T entityToDelete) { using (EsportMgmtDatabaseContext context = _context.CreateDbContext()) { T entity = await context.Set <T>().FirstOrDefaultAsync(x => x == entityToDelete); context.Set <T>().Remove(entity); await context.SaveChangesAsync(); return(true); } }