public async Task <IActionResult> Edit(int id, [Bind("ID,Title,ReleaseDate,Genre,Price")] Movie movie) { if (id != movie.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(movie); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MovieExists(movie.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(movie)); }
public async Task <IActionResult> Edit(int id, [Bind("ID,Name,PhoneNumber,Enabled")] Accounts accounts) { if (id != accounts.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(accounts); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AccountsExists(accounts.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(accounts)); }