NHibernate 3.3.3.4000で.net 4.5を使用しており、2つのセッションファクトリを使用してnhibernate.configを設定したいとします。 は、私は私のnhibernate.configこのよう形作ることを試みた:xセッションファクトリを使用したnhibernate設定
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory name="Configuration">
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property>
<property name="connection.connection_string">Data Source=Configuration.db;Version=3</property>
<property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
<property name="query.substitutions">true=1;false=0</property>
<property name="show_sql">false</property>
<mapping assembly="DataModel"/>
</session-factory>
<session-factory name="Texts">
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property>
<property name="connection.connection_string">Data Source=Texts.db;Version=3</property>
<property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
<property name="query.substitutions">true=1;false=0</property>
<property name="show_sql">false</property>
<mapping assembly="DataModel_Texts"/>
</session-factory>
</hibernate-configuration>
をしかし、私は、「セッション・ファクトリー」は無効であるHibernateConfigExceptionを取得:名前空間の要素「休止状態-設定を」: 例外は、構成を解析発生しました'urn:nhibernate-configuration-2.2'は、名前空間 'urn:nhibernate-configuration-2.2'で無効な子要素 'session-factory'を持っています。
2つのセッションファクトリでファイルを設定する方法がありますか?
よろしく フィル
NH4を.Net 4.5で使用する必要があります。 –
これは本当に例外で得られる唯一の情報であり、InnerExceptionsがあればそのすべてですか? –
多分この記事はあなたを助けることができます:http://www.codeproject.com/Articles/14846/Using-NHibernate-with-Multiple-Databases –