B
Bob
I'm sure this can be done but I just can't figure out how. I have two
DataTables in a DataSet with a relation between the two. Table 1 contains a
full list of product IDs and names and Table 2 contains the list of product
IDs a user has access to, how do I do an "inner join" type of operation to
output a DataView or DataRows (or anyting bindable) that has a list of
product names the user has access to based on the product IDs? I can go
through Table 2 row by row and use DataRow.GetChildRows() to get the rows in
Table 1 but this creates multiple DataRows objects (one for each loop).
Any suggestion is appreciated.
Bob
DataTables in a DataSet with a relation between the two. Table 1 contains a
full list of product IDs and names and Table 2 contains the list of product
IDs a user has access to, how do I do an "inner join" type of operation to
output a DataView or DataRows (or anyting bindable) that has a list of
product names the user has access to based on the product IDs? I can go
through Table 2 row by row and use DataRow.GetChildRows() to get the rows in
Table 1 but this creates multiple DataRows objects (one for each loop).
Any suggestion is appreciated.
Bob