C# - 合并两个行重复的数据表
我可以找到很多有关合并两个数据表和删除重复行的信息,但我需要相反的信息。
我需要知道是否有人有一种简单的方法来合并两个数据表,其中合并的结果是一个仅包含两个表中都存在的行的数据表。
I can find lots of information about merging two DataTables and dropping duplicate rows, but I need the opposite.
I need to know if anyone has an easy way to merge two DataTables where the result of the merge is a DataTable with only rows that exist in both tables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
DataRowComparer
按列值比较行。Like this:
DataRowComparer
compares rows by their column values.