public async Task <IActionResult> Edit(int id, [Bind("ID,Username,Password,Access,Status")] User user) { if (id != user.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(user); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserExists(user.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(user)); }
public async Task <IActionResult> Edit(int id, [Bind("ID,PublicKey,Fingerprint,CivilStatus,IsAlive,CreatedBy,CreatedAt,UpdatedBy,UpdatedAt")] Record record) { if (id != record.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(record); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RecordExists(record.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(record)); }