2013-12-18 29 views
0

我的LINQ查詢是給下面的錯誤:LINQ是給錯誤:類型聯接子句中的表現之一是不正確

The type of one of the expressions in the join clause is incorrect. Type inference failed in the call to 'GroupJoin'.

我有以下的LINQ查詢這是給錯誤:

from m in array join p in resellers on m equals p.ResellerId into j 
// join p in resellers on new { m } equals new { p.ResellerId } into j 
+3

變量'array'的類型是什麼? –

回答

-1

我不知道array是,但你有那肯定不是同一類型p.ResellerID的錯誤是什麼類型。這是它給你的類型推斷錯誤。您需要使用與p.ResellerID相同類型的array中的m屬性,以便能夠正確進行連接。

相關問題