how can i make a dataRelation to having more than one Relation between two tables
this is what i have for one column having Relation
childCol = myds.Tables["TblCTVKnee"].Columns["CoreNo"];
parentCol = myds.Tables["TblCTDef"].Columns["CoreNo"];
DataRelation myRelation;
myRelation = new DataRelation("RelationCT", parentCol, childCol);
what if two table should be connection with more that one columns like 1)CoreNo 2)Id?
this is what i have for one column having Relation
childCol = myds.Tables["TblCTVKnee"].Columns["CoreNo"];
parentCol = myds.Tables["TblCTDef"].Columns["CoreNo"];
DataRelation myRelation;
myRelation = new DataRelation("RelationCT", parentCol, childCol);
what if two table should be connection with more that one columns like 1)CoreNo 2)Id?