我在Linq寫程序到EF4 我在DataBase的「Items」表中把它FK給「Company」表。
也有「地址」表,表FK到「公司」表&到「城市」表。
我想退貨包括他的地址&城市。
但我canot這麼寫:Linq Index in Include
var items = context.Items.Include("Company.Address[0].City").ToList();
因爲包括未取得 「[]」
我在Linq寫程序到EF4 我在DataBase的「Items」表中把它FK給「Company」表。
也有「地址」表,表FK到「公司」表&到「城市」表。
我想退貨包括他的地址&城市。
但我canot這麼寫:Linq Index in Include
var items = context.Items.Include("Company.Address[0].City").ToList();
因爲包括未取得 「[]」
無需爲[0]
部分:
var items = context.Items.Include("Company.Address.City").ToList();
我收到了錯誤: >類型'TrackableCollection'中沒有屬性或字段'City'''' – user1799743
Address是什麼屬性/字段?什麼是Address類型? –
TracableCollection – user1799743
我得到erorr:
類型'TrackableCollection`中沒有屬性或字段'名稱'''
它可以幫助你,包括你收到的錯誤,更多的代碼,你輸入的內容和預期的輸出。你想做什麼? –