同じ列を持つがデータが異なる2つのデータテーブルテーブルがあり、同じIDを共有する行がある場合があります
table2 のある行の ID が table1 に存在しないテーブルにそれらを結合したい
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")
しかし、これをデータテーブルに入れる方法がわかりません