是否可以从Nhibernate映射DLL生成数据库模式?
我的要求是MySQL。
如果是这样,我该怎么做?有没有这方面的工具/脚本?开源/免费软件工具?
另外,我可以使用这些工具将数据集插入/更新到数据库吗?
答案 0 :(得分:20)
您是否尝试过使用NHibernate's built-in schema generation tool?
var cfg = new NHibernate.Cfg.Configuration();
cfg.Configure();
cfg.AddAssembly(typeof(AnEntityInYourMappingLib).Assembly);
new NHibernate.Tool.hbm2ddl.SchemaExport(cfg).Execute(false, true, false, false);
答案 1 :(得分:1)
我使用此代码:
public void CreateDatabaseSchemaFromMappingFiles()
{
NHibernate.Cfg.Configuration cfg = new NHibernate.Cfg.Configuration();
cfg.Configure();
NHibernate.Tool.hbm2ddl.SchemaExport schema = new NHibernate.Tool.hbm2ddl.SchemaExport(cfg);
schema.Create(false, true);
}