本文介绍了从一个数据表到另一个数据表中复制行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从数据表中特定行复制到另一个确定时代在C#?将有一个以上的行
解决方案
的foreach(DataRow的在dataTable1.Rows DR){
如果(/ *一些条件* /)
dataTable2.Rows.Add(dr.ItemArray);
}
上面的例子假定 dataTable1
和 dataTable2
有列相同数量,类型和顺序。
How can I copy specific rows from DataTable to another Datable in c#? There will be more than one row.
解决方案
foreach (DataRow dr in dataTable1.Rows) {
if (/* some condition */)
dataTable2.Rows.Add(dr.ItemArray);
}
The above example assumes that dataTable1
and dataTable2
have the same number, type and order of columns.
这篇关于从一个数据表到另一个数据表中复制行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!