XML 自定义数据集
我有很多使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论