来自DLL中的GenrateSchema在nhibernate中

时间:2012-09-14 08:40:50

标签: asp.net-mvc-3 nhibernate nhibernate-mapping

我有一个ASP.NET MVC和Nhibernate项目的DLL,它有一些模型和它的映射。 在我的项目中,我参考了该DLL。现在我想要当我运行项目时,Nhibernate会在DLL中出现的模型的GenrateSchema如何才能做到这一点?

1 个答案:

答案 0 :(得分:0)

从NHibernate配置中,您可以创建一个新的SchemaExport对象并在其上调用Create

例如:

var cfg = BuildNHibernateConfiguration();
new SchemaExport(cfg).Create(true,true);