1

我正在尝试将两个表合并到一个DataSet. 有DataSet2 个表,我想添加一列TypeofDayfrom Tables[1]to Tables[0]like this。但我在这里得到一个错误

“由于表达式中的循环引用,无法设置表达式属性。”

我怎样才能解决这个问题?先感谢您!这是在 VS 2005 中使用 c#。

DataSet ds = new BusinessLogic.BizLogic().getMonthlyStandings(RepID);

DataColumn newColumn1;
newColumn1 = new DataColumn("TypeofDay");
newColumn1.Expression = ds.Tables[1].Columns["TypeofDay"].ToString();
ds.Tables[0].Columns.Add(newColumn1);

DataView myDataView = new DataView();
myDataView = ds.Tables[0].DefaultView;
grdMonthlyStandings.DataSource = myDataView;
grdMonthlyStandings.DataBind();
4

0 回答 0