- 积分
- 0
- 在线时间
- 0 小时
- 主题
- 0
- 注册时间
- 2016-10-19
- 帖子
- 1
- 最后登录
- 2016-10-19
- 帖子
- 1
- 软币
- 56
- 在线时间
- 0 小时
- 注册时间
- 2016-10-19
|
发表于 2016-10-19 09:31:27
|
显示全部楼层
DataSet myDataSet = new DataSet();
myDataSet.Tables.Add(mainTable);
myDataSet.Tables.Add(childTable);
myDataSet.Relations.Add(myDataSet.Tables[0].Columns["主从表关联列名"], myDataSet.Tables[1].Columns["主从表关联列名"]);
this.Grid1.DataSource = myDataSet.Tables[0];
用一个DataSet重新绑定数据源就行了 |
|