I use vb.net to develop and I've used 5 DataTables in a windows application form and I need to combine these 5 DataTables together base on a primary key field.
To clarify
DataTable1 (PK,f1,f2,f3)
DataTable2 (PK,f4,f5,f6)
DataTable3 (PK,f7)
DataTable4 (PK,f8)
DataTable5 (PK,f9)
I need to have :
DataTable (pk,f1,f2,f3,f4,f5,f6,f7,f8,f9 )
Dataset, then join all of the tables on the primary key when you select. I think you can do this with aDataview, though I've only used that class on a single table.