G
Guest
I have two datasets from different databases that I would like to perform a left outer join on and bind the result to a datagrid. I am attempting this buy merging the datasets into one dataset. I would like the shemas to merge but what is happening is that the table from dataset "b" is copied into dataset "a" and remaining a separate table within dataset "a". Is this what I should expect? If so, I have created a parent child relation object and added that to the dataset "a" with table "a" being the parent of the merged table "b". I have bound my datagrid to table "a" of the merged dataset but the relationship is ignored and only the fields in table "a" are visible. How do I get all the fields of table "a" and the corresponding fields from "b" to showup in the grid? The fields from table "b" should be null if the child relationship can not obtain a result with the parent table "a".