nhibernate の使用を開始し、Session Manager をセットアップして新しい SessionFactory を作成しました。アプリの初回起動時にいくつかの情報を変更する必要があります。
XDocument を使用して構成ファイル (app.config ではない) を開きます。
<settings>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<reflection-optimizer use="false"/>
<session-factory>
<property name="x">SomeValue</property>
</session-factory>
</hibernate-configuration>
</settings>
XDocument xdoc = XDocument.Load(<file>);
var x = xdoc.Root.Element("hibernate-configuration");
xmlns を削除しない限り、x は null です。私は何が欠けていますか?