C# 获取存在DataTable1不存在DataTable2的数据的快速方法
通过合并和获得改变两个方法获得差异的部分:
dataTable1.AcceptChanges();
dataTable1.Merge(dataTable2);
DataTable changesTable = dataTable1.GetChanges();
这样可以快速获得dataTable2中存在而dataTable1中不存在的行,
反之可以用dataTable2合并dataTable1。
Any fool can write code that a computer can understand. Good programmers write code that humans can understand. –Martin Fowler
作者:『Gerry Ge』
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。