public async Task <IActionResult> Edit(int id, [Bind("Id,Content,Date")] 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))); } return(View(tweet)); }