nHibernate テスト プロジェクトを実行できないようです。次の構成ファイルとコードを使用しています。
埋め込みリソースとしてマークされた country.hbm.xml:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="SVL.Models.CountryModel, SVL" table="country">
<id name="Id" type="int" />
<property name="Name" type="String" length="200" />
</class>
</hibernate-mapping>
私の休止状態の設定ファイル:
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<!-- properties -->
<property name="connection.provider">
NHibernate.Connection.DriverConnectionProvider
</property>
<property name="connection.driver_class">
NHibernate.Driver.MySqlDataDriver
</property>
<property name="connection.connection_string">
Server=localhost;Database=svl;User ID=root;Password=pfje1008;
</property>
<property name="dialect">
NHibernate.Dialect.MySQL5Dialect
</property>
<mapping resource="country.hbm.xml" assembly="SVL" />
</session-factory>
</hibernate-configuration>`
そして最後に、休止状態の設定をセットアップするコード:
var cfg = new Configuration();
cfg.Configure();
var sessionFactory = cfg.BuildSessionFactory();
var thisAssembly = typeof(T).Assembly;
cfg.AddAssembly(thisAssembly);
何らかの理由で、リソースファイルが見つからないというメッセージが表示され続けます...