我有一个这样的xml:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<reflection-optimizer use="false"/>
<session-factory>
<property name="XX">XX</property>
<property name="XX">XX</property>
</session-factory>
</hibernate-configuration>
我正在尝试使用 SelectNodes 选择属性节点,并且尝试了以下操作:
root.SelectNodes("property");
root.SelectNodes("//property");
root.SelectNodes("/session-factory/property");
root.SelectNodes("descendant::property");
root.LastChild.SelectNodes("child::property");
但它们都返回 0 个节点。谁能帮我?谢谢。