删除重复数据表之一中的所有行
我有两个数据表 dt1 和 dt2,我将 dt2 复制到 dt1 中,并清除 dt2 中的所有行。但事实是,数据从两个数据表中清除,而不是仅从一个数据表中清除。以下是代码。
dt1= dt2 dt2.Rows.Clear()
这里 dt1 中的所有行也被删除吗?有没有更好的解决办法。
I have two datatables dt1 and dt2 i copied dt2 into dt1 and clear all rows from dt2.But fact is that data get cleared from both datatables rather than only one. following is the code.
dt1= dt2 dt2.Rows.Clear()
here all rows from dt1 also get deleted? is there any better solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将数据表复制到新数据表,例如
当前将 dt2 分配给 dt1 时,会分配 dt2 的引用。
You have to copy the datatable to your new datatable e.g.
Currently when you are assigning dt2 to dt1, reference of dt2 is assigned.