Beispiel #1
0
 public async Task DeleteAsync(Item entityToDelete)
 {
     _context.Remove(entityToDelete);
     await _context.SaveChangesAsync();
 }