将数据从一个数据表复制到另一个具有不同结构的数据表的最佳方法
我正在将数据从 DataTable 复制到另一个具有结构的 DataTable。 我必须在循环中对列号进行硬编码,并将数据复制到对象数组中。
实现这一目标的最佳方法是什么?
IEnumerable<DataRow> query = from vendInv in VendorInvoiceStagingTable.AsEnumerable()
where vendInv.Field<string>(VendInvoice.Number) == InvoiceHeader
select vendInv;
Object[] obj = new Object[10];
var item = query.First();
for (int idx = 0; idx < 10; idx++)
{
obj[idx] = item[idx];
}
VendorInvoiceTable.Rows.Add(obj);
I am copying data from DataTable to another DataTable with a structure.
I have to hardcode columns number in the loop and copy the data in object array.
What will be the best way to achieve it ?
IEnumerable<DataRow> query = from vendInv in VendorInvoiceStagingTable.AsEnumerable()
where vendInv.Field<string>(VendInvoice.Number) == InvoiceHeader
select vendInv;
Object[] obj = new Object[10];
var item = query.First();
for (int idx = 0; idx < 10; idx++)
{
obj[idx] = item[idx];
}
VendorInvoiceTable.Rows.Add(obj);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许,请查看适配器模式,它将允许您将一个数据表的结构调整为另一个数据表的结构。简单的解释和示例代码可以在 Dofactory 中找到。
Probably, check out Adapter pattern, it will allow you to adapt the structure of one data table to another. A simple explanation and sample code can be found at Dofactory.
我不是 100% 确定为什么要在将数据放入 VendorInvoiceTable 之前将其复制到数组中,但无论哪种方式:
I'm not 100% sure why you want to copy the data to an array before putting it into the VendorInvoiceTable, but either way: