仅使用 XML 的增量更改更新对象

发布于 2024-10-02 13:55:06 字数 228 浏览 1 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(1

染柒℉ 2024-10-09 13:55:06

您可以使用 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.

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