With the below table i get a above error in the question when adding child relations.It is perfectly valid for a menu but why do i land up with this error. I want to assign the table as datasource to a menu control.
MenuId MenuName ApplicationId ParentMenuId
1 MenuName1 1 -1
2 MenuName2 1 1
3 MenuName3 1 -1
4 MenuName4 1 2
c# code is provided below
_dsMenuTable.ReadXml(_xmlTextReader);
//parent column
DataColumn parentMenuColumn = _dsMenuTable.Tables["Menu"].Columns["MenuId"];
//child column
DataColumn childMenuColumn = _dsMenuTable.Tables["Menu"].Columns["ParentMenuId"];
//setup a relation between both the columns
DataRelation menuRelation = new DataRelation("MenuRelation", parentMenuColumn, childMenuColumn);
//relation is nested
menuRelation.Nested = true;
//add the relation to dataset
_dsMenuTable.Tables["Menu"].ChildRelations.Add(menuRelation);