when u use the follow code on 1.1.it will compile without error.

/**////<summary>
///Testtablerelation.
///</summary>
publicvoidRelation_1_1()
...{
DataTabledtParent=this.CreateDataTable();
dtParent.TableName="Parent";
DataRelationrelations=ds.Relations.Add("Relation",dtParent.Columns["index"],dtParent.Columns["parent_index"],false);
this.builder.Append(" GetthedatafromtreeROOT.");
this.GetLayerFromParent(ds,relations);
this.PrintDataTable(ds.Tables["parent"]);
this.builder.Append(" GetthedatafromtreeCHILDS.");
this.GetLayerFromChilds(ds,relations);
this.PrintDataTable(ds.Tables["parent"]);
this.DebugPrint(this.builder.ToString());
}
while it will run error on 2.0 with "Cannot create a DataRelation if Parent or Child Columns are not in a DataSet.".
if u want to run normally,u can use this cod:

/**////<summary>
///Testtablerelation.
///</summary>
publicvoidRelation_2_0()
...{
DataTabledtParent=this.CreateDataTable();
dtParent.TableName="Parent";
DataSetds=newDataSet();
ds.Tables.Add(dtParent);
DataRelationrelations=ds.Relations.Add("Relation",ds.Tables["Parent"].Columns["index"],ds.Tables["Parent"].Columns["parent_index"],false);
this.builder.Append(" GetthedatafromtreeROOT.");
this.GetLayerFromParent(ds,relations);
this.PrintDataTable(ds.Tables["parent"]);
this.builder.Append(" GetthedatafromtreeCHILDS.");
this.GetLayerFromChilds(ds,relations);
this.PrintDataTable(ds.Tables["parent"]);
this.DebugPrint(this.builder.ToString());
//this.WriteToTxtFile(this.builder.ToString());
}
what's your idea?
本文探讨了在不同.NET版本中创建DataRelation时遇到的问题,并提供了解决方案。在1.1版本中,直接添加关系不会引发错误,但在2.0版本中则会因父或子列不在DataSet中而失败。文章通过示例代码展示了如何正确地在一个DataSet内定义表格关系。
3万+

被折叠的 条评论
为什么被折叠?



