// To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(Vessel).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VesselExists(Vessel.ID)) { return(NotFound()); } else { throw; } } // Возврат к просмотру головоломки return(RedirectToPage("/Puzzles/Details", new { id = Vessel.PuzzleID })); }
// To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(StateOfVessel).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StateOfVesselExists(StateOfVessel.ID)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.StatesOfVessels.Add(StateOfVessel); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
// To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } // Сохранение нового объекта в БД _context.Vessels.Add(Vessel); await _context.SaveChangesAsync(); // Возврат к просмотру головоломки return(RedirectToPage("/Puzzles/Details", new { id = Vessel.PuzzleID })); }
public async Task <IActionResult> OnPostAsync(Guid?id) { if (id == null) { return(NotFound()); } StateOfVessel = await _context.StatesOfVessels.FindAsync(id); if (StateOfVessel != null) { _context.StatesOfVessels.Remove(StateOfVessel); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(Guid?id) { if (id == null) { return(NotFound()); } Puzzle = await _context.Puzzles.FindAsync(id); if (Puzzle != null) { _context.Puzzles.Remove(Puzzle); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(Guid?id) { if (id == null) { return(NotFound()); } Vessel = await _context.Vessels.FindAsync(id); // Сохранить идентификатор головоломки Guid?puzzleid = Vessel.PuzzleID; if (Vessel != null) { _context.Vessels.Remove(Vessel); await _context.SaveChangesAsync(); } // Возврат к просмотру головоломки return(RedirectToPage("/Puzzles/Details", new { id = puzzleid })); }