1
我的數據庫有多個模式,流利的nhibernate faq指出您可以爲整個數據庫或每個實體指定模式。我想根據AutoPersitenceModel指定模式,可以這樣做嗎?如何爲一組實體自動映射數據庫模式
我的數據庫有多個模式,流利的nhibernate faq指出您可以爲整個數據庫或每個實體指定模式。我想根據AutoPersitenceModel指定模式,可以這樣做嗎?如何爲一組實體自動映射數據庫模式
明白了:
public class SchemaConvention : IClassConvention
{
public void Apply(IClassInstance instance)
{
instance.Schema("schemaName");
}
}
AutoPersistenceModel model = AutoMap.AssemblyOf<Whatever>();
model.Conventions.AddFromAssemblyOf<SchemaConvention>();