2016-08-11 14 views

答えて

0
from element in t1 
join otherElement in t2 
on element.match equals otherElement.match 
where t2.x == true 
select new { 
      column1 = otherElement.column1, 
      column2 = otherElement.column2 
      //add all the elements of t1 here 
      } 

句は、入力として二つのソースの配列をとる参加します。各シーケンス内の要素は、他のシーケンス内の対応するプロパティと比較できるプロパティであるか、またはその中に含まれている必要があります。

https://msdn.microsoft.com/en-us/library/bb311040.aspx

関連する問題