是否可以使用只有IAutoMappingOverride接口的流畅的nhibernate创建Table Per Type映射?我真的想避免为我的模型写出完整的映射。
答案 0 :(得分:0)
不使用IAutomappingOverride
,而是使用AutomappingConfiguration
class MyAutomappingConfiguration : DefaultAutomappingConfiguration
{
public override bool IsDiscriminated(Type type)
{
return false; // or whatever classes it should discriminate instead of table per type
}
}