したがって、コントローラーには次のアクションがあります。
public ActionResult List() {
ViewBag.Title = "View Current Stores";
var curStores =
(from store in stores.Stores
where store.CompanyID == curCompany.ID
select store).ToList();
return View(curStores);
}
これは、店舗のリストを取得し、それをテーブルとして表示することを想定しています。ただし、LINQ ステートメントは次のエラーをスローしています。
Non-static method requires a target.
私は何をすべきか?