XML 自定义数据集

发布于 2024-12-28 10:20:36 字数 438 浏览 1 评论 0原文

我有很多使用 DataSet 对象来加载/保存/操作数据的代码。 我想通过使用 xml 而不是数据集对象来提高扩展缓存序列化过程的性能。我要做的所有更改都应该支持现有的代码语法,例如:

    count =MyDataset.Tables[0].Rows.Count;
    foreach(DataColumn c in MyDataset.Tables[0].Columns)

应该变成:

    count =MyXmlDataset.Tables[0].Rows.Count;
    foreach(XDataColumn c in MyXmlDataset.Tables[0].Columns)

在我自己构建这个之前,您知道有任何现有的库可以完全模仿 DataSet 并且可以从 DataSet 进行初始化吗?

I have quite a lot of code that uses DataSet objects to load/save/manipulate data.
I want to improve performance of an exphansive caching-serialalizing process, by working with xml - instead of a dataset object. All changes I'm going to do should support the existing code syntax, for Example:

    count =MyDataset.Tables[0].Rows.Count;
    foreach(DataColumn c in MyDataset.Tables[0].Columns)

should Become:

    count =MyXmlDataset.Tables[0].Rows.Count;
    foreach(XDataColumn c in MyXmlDataset.Tables[0].Columns)

Before I build this myself, do you know of any existing library that immitates DataSet exactly and can be initialized from a DataSet?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文