现在我在我的项目中使用 NHibernate + ASP.NET MVC 3。我总是添加一个新的类模型,我需要像这样设置 SchemaExport:
Fluently
.Configure()
.Database(MsSqlConfiguration.MsSql2008.ConnectionString(connectionString).ShowSql())
.Mappings(m => m.FluentMappings
.AddFromAssembly(typeof(Usuario).Assembly)
.AddFromAssembly(typeof(Empresa).Assembly)
.AddFromAssembly(typeof(TipoUsuario).Assembly))
.ExposeConfiguration(config =>
{
var schemaExport = new SchemaExport(config);
schemaExport.Drop(true, true);
schemaExport.Create(true, true);
})
每次 schemaExport 导出一个新模型时,有什么方法可以在几个表中插入一组默认值?