public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(LogicalDisk).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!LogicalDiskExists(LogicalDisk.Id)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.LogicalDisks.Add(LogicalDisk); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } LogicalDisk = await _context.LogicalDisks.FindAsync(id); if (LogicalDisk != null) { _context.LogicalDisks.Remove(LogicalDisk); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }