将 DataTable 复制到 DataTable 并保留 PrimaryKey

发布于 2024-10-22 04:45:16 字数 197 浏览 1 评论 0原文

  1. 我需要将 dt2 复制到 dt1 中,但无法使用 dt1 = dt2 因为 dt1 有主键,而 dt2 则不是。执行此操作的最佳方法是什么?

  2. 是否可以向不为空的现有数据表添加主键?

谢谢

  1. I need to copy dt2 into dt1 but I can't use dt1 = dt2 because dt1 has a primary key while dt2 does not. What's the best way to do this?

  2. Is is possible to add a primary key to an existing dataTable which is not empty?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁拥 2024-10-29 04:45:16

我只是在寻找如何设置主键 - 找到了解决方案:

dt2.PrimaryKey = new DataColumn[] { dt2.Columns["ColumnName"] };

我需要这个来合并数据表,所以它可能有助于将一个数据表复制到另一个数据表中。

I was just searching for how to set primary key - found solution:

dt2.PrimaryKey = new DataColumn[] { dt2.Columns["ColumnName"] };

I needed this for merging datatables, so it might help to copy one into an other.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文