NHibernate Envers没有创建审计表

时间:2014-02-28 09:12:17

标签: nhibernate-envers

我尝试使用以下代码

config.SetEnversProperty(ConfigurationKey.DefaultSchema, "audit");
config.SetEnversProperty(ConfigurationKey.RevisionFieldName, "Rev");
config.SetEnversProperty(ConfigurationKey.RevisionTypeFieldName, "RevType");
config.SetEnversProperty(ConfigurationKey.AuditTableSuffix, "_Audit");
config.SetEnversProperty(ConfigurationKey.StoreDataAtDelete, false);
var enversCfg = new AttributeConfiguration();                        
config.IntegrateWithEnvers(enversCfg);

但是我收到了一个错误,原因是没有创建审计表,有人请帮忙

2014-02-28 00:47:03,200 DEBUG 6 CSL:NHibernate.SQL方法:lambda_method LINE:0 - INSERT INTO audit.REVINFO(REVTSTMP)VALUES(@ p0);选择SCOPE_IDENTITY();

0 个答案:

没有答案