asp.net ウェブサイトのサンプル アプリケーションMVCMovieApplicationから ASP.Net MVC を学ぼうとしています。このアプリケーションは、MVC3 用に作成されました。私は下の部分で立ち往生しています。誰かがこの問題で私を助けることができますか?
public ActionResult Edit(int id = 0)
{
Movie movie = db.Movies.Find(id);
if (movie == null)
{
return HttpNotFound();
}
return View(movie);
}
エラー:
The Name 'HTTPNotFound' does not exist in the current context.