我已经读过复合主键confuse the hell out of typical ORM code generators。哪些ORM最适合复合PK,哪些可以避免? (我对.NET特别感兴趣)
答案 0 :(得分:3)
我正在使用复合键成功使用NHibernate。
<class name="UserProfileField" table="UserProfileFields">
<composite-id>
<key-many-to-one name="Parent" column="UserId" lazy="false"/>
<key-property name="FieldName"/>
</composite-id>
...