NHibernate Contrib(Burrow)是一个轻量级的开发中间件,底层使用Nhibernate 2.0GA(Nhibernate 2.0的.hbm.xml和1.2是兼容的) ORM技术框架实现。Burrow提供了智能化的状态,会话,使管理,事务让你更方便的使用Nhibernate进行.net应用程序的开发。
创建一个Burrow asp.net项目
添加web.config配置信息,读取配置和assembly
<configSections>
<section name="NHibernate.Burrow" type="NHibernate.Burrow.Configuration.NHibernateBurrowCfgSection" />
</configSections>
<NHibernate.Burrow >
<persistantUnits>
<add name="PersistenceUnit1" nh-config-file="hibernate.cfg.xml" />
</persistantUnits>
</NHibernate.Burrow>
添加HttpModule Setting 用于管理会话和事务
<httpModules>
<add name="NHibernate.Burrow.WebUtil.HttpModule"
type="NHibernate.Burrow.WebUtil.WebUtilHTTPModule,NHibernate.Burrow.WebUtil"/>
</httpModules>
维护hibernate.cfg.xml 实体数据库位置和实体类的程序集如果需要同时连接多个数据库之需要添加多个配置文件
<configSections>
<section name="NHibernate.Burrow" type="NHibernate.Burrow.Configuration.NHibernateBurrowCfgSection" />
</configSections>
<NHibernate.Burrow >
<persistantUnits>
<add name="PersistenceUnitDB1" nh-config-file="db1hibernate.cfg.xml" />
<add name="PersistenceUnitDB2" nh-config-file="db2hibernate.cfg.xml" />
</persistantUnits>
</NHibernate.Burrow>
使用ISession,如果你使用Burrow.AppBlock.GenericDAO 那么就不必关心会话和事务的控制
ISession sess = new BurrowFramework().GetSession(); //Gets the Burrow Managed NHibernate Session
如果不是一个asp.net运行环境,那么你需要调用BurrowFramework.InitWorkSpace to initialize
//call this at the beginning (only when not in ASP.NET)
new BurrowFramework.InitWorkSpace();//
//call this at the end (only when not in ASP.NET)
new BurrowFramework.CloseWorkSpace();