我需要在asp.net中将xmldocument转换为数据集。我不想将xmldata保存到任何物理位置。
最佳答案
可以使用xmldocument类读取xml文件并将数据保存到数据集。Here is an example关于如何使用xmldocument读取xml文件。
这段代码很旧。没试过
xmldocument xdoc=methodReturnsxmldocument();
//转换为数据集
数据集ds=新数据集();
readxml(新的xmlnodereader(xdoc));
Here是另一个例子。
关于xml - 将XMLDocument转换为DataSet ASP.Net 1.1,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/684703/