有人能幫我完成這個linq左外連接查詢,以便右表(tempData)的第二列包含在結果集中,即使它可能爲空?Linq左外連接中的多列
sortedData = From cs In mbCustomSort
Order By cs(0)
Group Join entry In tempData On cs(joinColumn) Equals entry(0) Into Group
From last In Group.DefaultIfEmpty _
Select New With {.groupField = cs(joinColumn)}
什麼是mbCustomSort,customsort和tempData? –
對不起,mbcustomsort和tempData是數據表。你應該閱讀cs – groobie
這是否工作:'用{.groupField = cs(joinColumn),.SecondRight = last(1)}'選擇新的? –