在学习 Jon Galloways MVC 音乐商店示例之后。我只是不明白创建视图如何将模型传递给控制器,我们可以从动作中的参数中看到它Create(Movie movie).
谢谢。
[HttpPost]
public ActionResult Create(Movie movie)
{
if (ModelState.IsValid)
{
db.Movies.Add(movie);//Where is the movie come from?
db.SaveChanges();
return RedirectToAction("Index");
}
return View(movie);
}