Для потомков вот что я в итоге сделал:
1) Схватил исходный код NHibernate SchemaExporter и переименовал класс в «OurSchemaExporter».
2) Добавлен новый конструктор:
public OurSchemaExporter(Configuration cfg, Func<string, bool> shouldScriptBeIncluded)
: this(cfg, cfg.Properties)
{
this.shouldScriptBeIncluded = shouldScriptBeIncluded ?? (s => true);
}
3) Изменен метод инициализации для вызова, чтобы выяснить, должен ли быть включен скрипт:
private void Initialize()
{
if (this.wasInitialized)
return;
if (PropertiesHelper.GetString("hbm2ddl.keywords", this.configProperties, "not-defined").ToLowerInvariant() == Hbm2DDLKeyWords.AutoQuote)
SchemaMetadataUpdater.QuoteTableAndColumns(this.cfg);
this.dialect = Dialect.GetDialect(this.configProperties);
this.dropSQL = this.cfg.GenerateDropSchemaScript(this.dialect);
this.createSQL = this.cfg.GenerateSchemaCreationScript(this.dialect);
// ** our modification to exclude certain scripts **
this.dropSQL = new string[0]; // we handle the drops ourselves, as NH doesn't know the names of all our FKs
this.createSQL = this.createSQL.Where(s => shouldScriptBeIncluded(s)).ToArray();
this.formatter = (PropertiesHelper.GetBoolean("format_sql", this.configProperties, true) ? FormatStyle.Ddl : FormatStyle.None).Formatter;
this.wasInitialized = true;
}
4) При использовании OurSchemaExporter проверьте, хотим ли мы включить определенные таблицы, посмотрев содержимое каждого сценария создания SQL:
var ourSchemaExport = new TpsSchemaExporter(configuration, ShouldScriptBeIncluded);
...
private bool ShouldScriptBeIncluded(string script)
{
return !tablesToSkip.Any(t => ShouldSkip(script, t));
}
private static bool ShouldSkip(string script, string tableName)
{
string s = script.ToLower();
string t = tableName.ToLower();
return
s.Contains(string.Format("create table dbo.{0} ", t))
|| s.Contains(string.Format("alter table dbo.{0} ", t))
|| s.EndsWith(string.Format("drop table dbo.{0}", t));
}
Взломать, но это делает работу.