public async Task <IActionResult> Edit(int id, [Bind("Id,Login,Password")] Users users) { if (id != users.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(users); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UsersExists(users.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction("Index")); } return(View(users)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,LastName,FirstName,Age")] Persons persons) { if (id != persons.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(persons); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PersonsExists(persons.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction("Index")); } return(View(persons)); }