public async Task <IActionResult> Edit(int id, [Bind("Id,FirstName,LastName,Username,Email,Password")] UserModel userModel) { if (id != userModel.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(userModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserModelExists(userModel.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(userModel)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Country,Recommendation")] LocationModel locationModel) { if (id != locationModel.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(locationModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!LocationModelExists(locationModel.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(locationModel)); }