我有具有相同的列,但具有不同的數據和一些時間2頁數據表的表有行共享相同的IDVB.NET LINQ加入鮮明2個表
我想加入那些表,其中的ID表2中的一些行不表1中存在
so if i the following tables
ID Name
1 A
2 B
3 C
ID Name
5 D
1 A
2 B
3 C
the from joining would be
ID Name
1 A
2 B
3 C
5 D
這裏就是我想
Dim q = From e In tbl1.AsEnumerable Join r In tbl2.AsEnumerable On e.Field(Of Integer)("id") Equals r.Field(Of Integer)("id")
但我如何得到這個數據表
不知道
@MitchWheat更新我的代碼問題 – user1590636
似乎是一個UNION可能是一個更好的選擇。 http://msdn.microsoft.com/en-us/library/bb341731.aspx –
@MitchWheat但仍然,我使用'AsEnumerable'使用聯合或聯接,我如何將數據轉換回數據表?? – user1590636