別のデータベース、スキーマ、およびテーブル サフィックスを使用するように NHibernate.Envers をセットアップしようとしています。なんらかの理由で、設定している構成の変更が無視されます。
サンプルコード
var nhCfg = new Configuration().Configure();
nhCfg.IntegrateWithEnvers(new AttributeConfiguration());
nhCfg.SetEnversProperty(ConfigurationKey.AuditTableSuffix, "_Log");
nhCfg.SetEnversProperty(ConfigurationKey.DefaultCatalog, "LoggingDatabase");
nhCfg.SetEnversProperty(ConfigurationKey.DefaultSchema, "log");
誰か提案はありますか?構成の変更をコミットするために何かが欠けているかどうかはわかりません。