public async Task <IActionResult> Edit(int id, [Bind("UserId,FirstName,LastName")] User user) { if (id != user.UserId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(user); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserExists(user.UserId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(user)); }
public async Task <IActionResult> Edit(int id, [Bind("ShootingId,NumberOfShoots,CreationDateTime,IsFinished")] Shooting shooting) { if (id != shooting.ShootingId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(shooting); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ShootingExists(shooting.ShootingId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(shooting)); }