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