将 DataTable 复制到 DataTable 并保留 PrimaryKey
我需要将
dt2
复制到dt1
中,但无法使用dt1 = dt2
因为dt1
有主键,而 dt2 则不是。执行此操作的最佳方法是什么?是否可以向不为空的现有数据表添加主键?
谢谢
I need to copy
dt2
intodt1
but I can't usedt1 = dt2
becausedt1
has a primary key whiledt2
does not. What's the best way to do this?Is is possible to add a primary key to an existing dataTable which is not empty?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是在寻找如何设置主键 - 找到了解决方案:
我需要这个来合并数据表,所以它可能有助于将一个数据表复制到另一个数据表中。
I was just searching for how to set primary key - found solution:
I needed this for merging datatables, so it might help to copy one into an other.