将表从 3 个数据集合并到 1 个
我正在从数据库加载三个数据集
Dataset 1 > Table 1 > 10 rows
Dataset 2 > Table 1 > 3 rows
Dataset 3 > Table 1 > 5 rows
(所有数据集具有相同的列名,相同的数据类型),实际上它们包含基于不同选择条件的数据) 现在我想将所有三个数据集合并为一个这样的数据集
数据集4>表1 18行
请帮忙我该怎么做
I am loading three dataset from the database which has
Dataset 1 > Table 1 > 10 rows
Dataset 2 > Table 1 > 3 rows
Dataset 3 > Table 1 > 5 rows
(All dataset has same column name, same datatype) actually they contains the data based on different select condition)
now I want to merge all three dataset into one like this
Dataset 4 > Table 1 > 18 rows
Please help how can I do it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试DataSet.Merge 方法 (DataSet) 方法。像这样的东西(未测试):
C#:
VB.NET:
Try the DataSet.Merge Method (DataSet) method. Something like this (not tested):
C#:
VB.NET:
如果您希望合并两个数据集和所有包含的表,则可以使用蒂姆的建议,或者您可以对特定表执行类似的操作。
You can use Tim's suggestion if you're looking to merge the two datasets and all of the containing tables, or you can do something like this for specific tables.
一种(灵活)方法是使用 Enumerable.Union。
在 VB.NET 中:
测试使用:
One (flexible) way is using Enumerable.Union.
In VB.NET:
Tested with: