无法将XmlReader加载到XmlDocument中

时间:2015-09-22 06:57:13

标签: c# xml

<Response>
    <Items>
        <attributes></attributes>
    </Items>
    <Locations>
        <attributes></attributes>
    </Locations>
</Response>

我有一个上面显示格式的XML文件。

我想将attributes父{林地} Items保存在数据库中的单独表格中,并将attributes父亲Locations保存在另一个表格中。

我无法使用XmlReader element .Read()。我一直在使用XmlDocument.Load初始加载阅读器XmlDocument并使用 doc.SelectSingleNode("//Items")将选择nodes,并将通过XmlReader解析内部信息。

但是现在我遇到了将XmlReader加载到XmlDocument的问题,因为我得到OutOfMemoryException.

有人可以帮我解决这个问题吗?

0 个答案:

没有答案