Is there a way in linq to join two DataTables and store the result in another DataTable? And I mean a DataTable not the hierarchical form that group join creates.
Here is the code for group join that i have got so far. Which works, but I don't understand what to do with the result.
var temp = from t1 in table1
join t2 in table2
on t1.Field<string>("a")
equals t2.Field<string>("b") into t
select t;
And also, how does one use the hierarchical form created by group join anyway?