0
我有一個客戶與地址有1-n的關係。如何查詢EF中已經加載的數據?
我希望能夠獲得第一個地址。所以,我創建了一個方法:
public Address firstAddress
{
get
{
var f=from d in this.Addresses
select d;
return f;
}
}
我得到以下錯誤:
錯誤5無法找到ofsource 'System.Data.Objects.DataClasses.EntityCollection' 的實現。 '選擇'可愛。使用'System.Linq'est-elle manquante注入'System.Core.dll'或undu指令?
我不undertand爲什麼我無法查詢地址的集合... 感謝 約翰