public async Task <IActionResult> Edit(int id, [Bind("Id,Text,UserId,TimeStamp")] Tweet tweet) { if (id != tweet.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(tweet); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TweetExists(tweet.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["UserId"] = new SelectList(_context.Users, "Id", "Id", tweet.UserId); return(View(tweet)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,UserName")] 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)); }