public async Task <IActionResult> Edit(int id, [Bind("Id,MovieId,ShowDateTime")] Showtime showtime) { if (id != showtime.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(showtime); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ShowtimeExists(showtime.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["MovieId"] = new SelectList(_context.Movie, "Id", "Title", showtime.MovieId); return(View(showtime)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Title,PosterUrl,Subcommittee")] Movie movie) { if (id != movie.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(movie); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MovieExists(movie.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(movie)); }