mvc4 ビューに db コンテキスト データを表示するにはどうすればよいですか? 以下は私のコントローラーコードです:
public ActionResult Detail(int id)
{
AuthorContext oauthorContext = new AuthorContext();
Author oauthor = oauthorContext.Authors.Single(x => x.authorid == id);
return View(oauthor);
}
そしてビューで:
@{
ViewBag.Title = "Author Detail";
}
<h2>AuthorDetail</h2>
@{
foreach Context in
}