Is there a way to to create a single table from multiple tables in a dataset?
I currently have a dataset with multiple tables and and relations connecting those tables.
Table1 has many records to each record in Table2. I would like to create a new table which is effectively Table2 INNER JOIN Table1.
Is there an easy way to achieve this?
Or am I just going to have to manually create a new datatable and cycle through each record in Table 2 using GetParentRow to grab values from Table1 and manually build each row to populate it with?
I am using VB.Net (.Net version 2) to create a web application.
I currently have a dataset with multiple tables and and relations connecting those tables.
Table1 has many records to each record in Table2. I would like to create a new table which is effectively Table2 INNER JOIN Table1.
Is there an easy way to achieve this?
Or am I just going to have to manually create a new datatable and cycle through each record in Table 2 using GetParentRow to grab values from Table1 and manually build each row to populate it with?
I am using VB.Net (.Net version 2) to create a web application.
Comment