G
Gene Ariani
I have one dataset that contains two DataTables:
DataTable1:
Customer_ID
1
2
3
4
5
the other DataTable2 returns
Customer_ID
4
5
If I would have treated this as regular queries and join them on Customer_ID
the resulting set would only contain:
Customer_ID
4
5
Is there a way to inner join the two DataTables to create a third DataTable
with the desired results. I have tried to user Relations.Add method with no
success.
Thanks
Gene
DataTable1:
Customer_ID
1
2
3
4
5
the other DataTable2 returns
Customer_ID
4
5
If I would have treated this as regular queries and join them on Customer_ID
the resulting set would only contain:
Customer_ID
4
5
Is there a way to inner join the two DataTables to create a third DataTable
with the desired results. I have tried to user Relations.Add method with no
success.
Thanks
Gene