使用 NHibernate 将下表结构建模为下面的“透视”域模型的最佳方法是什么?
映射属性是微不足道的;它确实是我不确定的行到属性/虚拟列的枢纽。
数据库结构
属性表
Id Name Type
Attr1 Some Attribute 1 Bool
Attr2 Some Attribute 2 Bool
Attr3 Some Attribute 3 Bool
广告表
Id Name
Ad1 Some ad 1
AdAttributes 表
Id AdId AttributeId Value
100 Ad1 Attr1 true
101 Ad1 Attr2 false
102 Ad1 Attr3 true
所需的 NHibernate 对象模型
class Attribute{
public int Id {get;set;}
public Type TheType {get;set;}
public string Name {get;set;}
}
class AdAttribute{
public int Id{get;set;}
public Ad Ad{get;set;}
public Attribute Attribute{get;set;}
public bool Value{get;set;}
}
class Ad{
...
class Attributes{
public AdAttribute Attr1{get;set;}
public AdAttribute Attr2{get;set;}
public AdAttribute Attr3{get;set;}
}
Attributes TheAttributes{get; protected set;}
}
表结构不是一成不变的,但目标是不将属性存储为广告上的列。不同的广告类型会有不同的属性,但它们不是动态变化的,即广告类型 1 总是有 10 个属性,广告类型 2 总是有 5 个属性,等等。
首选原始 NHibernate HBM 答案,但流利的映射还可以