我有一個LINQ查詢,它會產生一個Job數組。 由於LINQ-to-SQL對跨上下文查詢的限制/限制,我無法對錶進行連接,因此作業記錄的兩個字段爲空。加入兩個獨立的linq查詢
但我可以通過做一個單獨的LINQ查詢來獲得這些。
我的問題是我可以填充這兩個字段很容易說例如通過對這兩個查詢進行連接? - 如果是的話如何?
query1.Join(query2,..... and so on);
在此先感謝。
EDIT
var results = query1.Join(query2,
job => job.JobID,
other => other.JobID,
(job, other) => new
{
MissingField = other.Field,
OtherMissingField = other.OtherField
});
我收到錯誤消息: 的類型參數方法「System.Linq.Enumerable.Join(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable, System.Func,System.Func,System.Func)'不能從使用中推斷出來。嘗試明確指定類型參數。
JOINs在L2S中工作得很好。你能提供一個不適合你的簡單版本的代碼嗎? – 2011-02-11 11:48:30