在 vb.net 中循环遍历一个数据表中的记录并填充另一个数据表
我有一个 asp.net 应用程序,其中有一个数据表(“DataTableA”),仅返回一列(“ProductID”)。
我想读取“ProductID”的每一行,处理一些业务逻辑,然后将这些列(ProductID 和 ProductIDBusinessLogicValue)复制到 DataTableB。然后,该 DataTableB 将显示在 asp.net 页面上。
读取 DataTableA 每一行的最佳方法是什么?
谢谢
I have an asp.net application where I have a datatable ("DataTableA") that returns just one column ("ProductID").
I want to read each row of "ProductID", process some business logic, then copy both those columns (ProductID & ProductIDBusinessLogicValue) to DataTableB. This DataTableB is then displayed on the asp.net page.
What would bhe the best way to read each row of DataTableA ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 DataTableA 复制到 DataTableB,添加列并在每一行上执行业务逻辑,如下所示:
you can copy DataTableA to DataTableB, add column and do business logic on each row, something like this:
这是您可能喜欢的另一种方法(linq)
更多信息...
Here's another approach you might like (linq)
More Info...