我沒有可見的領域,你知道爲什麼(在我的LINQ)?實體框架 - 選擇數據
例
var student = (from s in ctx.Students
where s.StudentName == "Student1"
select s).FirstOrDefault<Student>();
數據庫(表領土):
LINQ
LINQ與CTX也有問題
的TerritoryID
正確:
public ActionResult Index()
{
using (var ctx = new NORTHWNDEntities())
{
var Territory = (from s in ctx.Territories
where s.TerritoryDescription
== "Student1"
select s).FirstOrDefault<Territories>();
}
return View();
}
感謝所有爲您的時間!和幫助。
你的意思是你的代碼正在編譯,但你不能在設計中看到'Territory'?你嘗試刷新edmx,或刪除它並創建一個新的? – Habib 2013-02-28 12:13:24
不應該從'在ctx.Territories'中? – MarcinJuraszek 2013-02-28 12:14:08
你是否在視圖中返回任何東西? – 2013-02-28 12:31:37