Hi,
I have two datasets that I create in code..
I have two datasets that I create in code..
SqlDataAdapter.Fill(dsDetails,
"RoleResponsibility")
SqlDataAdapter.Fill(dsDetails,
"Role")
The "Role" table in the dsDetails dataset is the master table, and the RoleResponsibility table is the child.
I have reviewed the documentation, and I am a little confused, mainly because the samples are creating tables in code.
How do you have a hierarchical view between two tables in a dataset ?
Thanks