0
我需要能夠在LINQLinq to entities,如何選擇所有列並選擇自定義列?
select t1.*, t2.column1, t2.column2
from Table1 as t1 inner join Table2 as t2
Where t2.x = true
我們希望得到他的所有列和其他表中的一些列的主表要做到這一點查詢。這可以在linq中完成嗎?
我需要能夠在LINQLinq to entities,如何選擇所有列並選擇自定義列?
select t1.*, t2.column1, t2.column2
from Table1 as t1 inner join Table2 as t2
Where t2.x = true
我們希望得到他的所有列和其他表中的一些列的主表要做到這一點查詢。這可以在linq中完成嗎?
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
}
甲加入子句需要兩個源序列作爲輸入。每個序列中的元素必須是或包含可以與其他序列中的相應屬性進行比較的屬性。