直接上代码:
DataSet ds1=new DataSet(); DataSet ds2=new DataSet(); //将ds2中的数据合并到ds1中 ds1.Merge(ds2,true,MissingSchemaAction.AddWithKey); //此时 ds1就是合并之后的集合
参数 | 说明 |
dataSet | 要将哪个DataSet合并进来 |
preserveChanges | 要保留当前 DataSet 中的更改,则为 true ;否则为 false 。 |
missingSchemaAction | MissingSchemaAction 值之一。Add: 添加必需的列以完成架构;B: AddWithKey: 添加必需的列和主键信息以完成架构。 |
微信扫码查看本文
发表评论