I have the following two data tables (DataTable) that represents PC allocations to students for different timeslots:
Table1:
Timeslot PC1 PC2 PC3
1 A B
2 A B
3 D
4 D
Table2:
Timeslot PC1 PC2 PC3
1 C
2 C
3
4
Would it be possible to join these two DataTables together into one DataTable, as follows?
Wanted:
Timeslot PC1 PC2 PC3
1 A C B
2 A C B
3 D
4 D
I know that, in SQL, it would be quite straight forward left join, but I have no clue how I can do this in C# with DataTables.