我有以下映射定义:
<class name="Role" table="Role" optimistic-lock="version" >
<id name="Id" type="Int32" unsaved-value="0" >
<generator class="native" />
</id>
<property name="RoleName" type="String(40)" not-null="true" />
<bag name="UsersInRole" generic="true" lazy="true" cascade="all" table="UserRoles" >
<key column="RoleId" />
<many-to-many column="UserId" class="SystemUser, Domain"/>
</bag>
和
<id name="Id" type="Int32" unsaved-value="0" >
<generator class="native" />
</id>
<property name="UserName" type="String(40)" not-null="true" unique="true" />
此映射生成映射表UserRoles,它有两列 - RoleId和UserId。
但是,我想为这种关系添加额外的属性 - 即一些枚举值定义关系的状态以及有效的开始和关系。结束日期。
是否可以在nhibernate中执行,或者我是否需要在此处添加其他类并将关系m-to-m更改为2个关系[user] 1-to-m [user_role] m-to-1 [role]?
答案 0 :(得分:9)
您需要添加额外的课程,例如UserRole,在代码中保留其他属性。
当涉及到映射时,可以将其映射为您提到的类。但我也认为它可以映射为角色映射中的复合元素:
<set name="UsersInRole" lazy="true" table="UserRoles" >
<key column="RoleId" />
<composite-element class="UserRole">
<many-to-one name="User" column="UserId" not-null="true"/>
<propery name="RelationState" not-null="true"/>
<propery name="StartDate" not-null="true"/>
<propery name="EndDate" not-null="true"/>
</composite-element>
</set>
所有属性都必须为null,因为它们已成为UserRoles表主键的一部分。有关更多信息,请参阅:
答案 1 :(得分:0)
添加其他课程。