仅使用 XML 的增量更改更新对象
我有 2 个数据集,其中加载了来自两个具有相同数据的 xml 文件的数据 架构。这些文件包含昨天和今天的数据。我想合并 两个数据集的方式使得所得数据集应具有所有 今天的数据覆盖昨天的数据。
抓住:今天的 数据集仅包含每日变化(DELTA),不应合并 全部删除 与昨天相比没有变化。
我可以通过反射来实现这一点吗? 最有效的方法是什么?
任何想法都会有帮助..
I have 2 datasets loaded with data from two xml files having the same
schema. The files contain data from yesterday and today. I'd like to merge
both datasets in such a way that the resulting dataset should have all the
today's data overriding yestrerday's data.
CATCH: the today's
dataset contains only the daily changes (DELTA) and merging should not
remove all
unchanged records from yesterday.
Is it possible that I can acheive this via Reflection?
What's the most efficient way of doing so ?
Any ideas would be helpful..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DataTable 类的 Merge 方法。
或者您也可以使用 DataSet 类的 Merge 方法。
You can use the Merge method of the DataTable class.
Or you can just use the Merge method of the DataSet class as well.