我需要在ASP.Net中将XMLDocument转换为DataSet。我不想将XMLData保存到任何物理位置。
答案 0 :(得分:5)
您可以使用xmlDocument类读取xml文件并将数据保存到数据集。 Here is an example关于如何使用xmlDocument读取XML文件。
此代码非常陈旧。没试过呢
XmlDocument xdoc = MethodReturnsXmlDocument();
//转换为DataSet
DataSet ds = new DataSet();
ds.ReadXml(new XmlNodeReader(xdoc));
Here是另一个例子。