我有一个 web 项目并使用这样的 nhibernate 配置文件:
<session-factory>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
<property name="connection.connection_string">Server=.\sqlexpress;Initial Catalog=afemanager;Integrated Security=no;User=sa;Password=password;</property>
<property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
<property name="show_sql">true</property>
<mapping file="afe-serialization.hbm.xml"/>
<mapping file="afe-view.hbm.xml"/>
</session-factory>
然后,我读了这样的配置:
public static ISession GetSession()
{
NHibernate.Cfg.Configuration config = new NHibernate.Cfg.Configuration();
return config.Configure(Path.Combine( HttpContext.Current.Server.MapPath( "/" ), "App_Data", NHIBERNATE_CFG)).BuildSessionFactory().OpenSession();
}
运行时显示异常:
“/”应用程序中的服务器错误。找不到文件“C:\Program Files (x86)\Common Files\Microsoft Shared\DevServer\11.0\afe-serialization.hbm.xml”。
我的 .hbm 文件不在该目录中。我的问题是如何设置映射文件以从 App_Data 目录获取 .hbm 文件。
像这样的东西:
Path.Combine(HttpContext.Current.Server.MapPath("/"), "App_Data", "afe-serialization.hbm.xml")