Hi,
I'm getting "A child row has multiple parents" error when I try to read an xml file created from a dataset that has two related tables. Both have a primary key, and are related using:
Code:
//Assign a relation
DataRelation relation = myDS.Relations.Add(primarykey, foreignkey);
//Ask ADO.NET to generate nested XML nodes
relation.Nested = true;
I am reading the xsd file first and then the xml file.
Any ideas?