我有一個名爲類/表「註釋」Nhibernate:如何爲同一班級的孩子創建兩個班級的<bag>?
<class name="Comment">
<id name="Id">
<generator class="guid"/>
</id>
<property name="ReferenceId" index="Comment_ReferenceId_Index" />
<property name="Contents" length="1024" />
,我需要在其他幾類創建的評論的袋子像合同
<class name="Contract">
<id name="Id">
<generator class="guid"/>
</id>
<property name="Status"/>
<bag name="Comments">
<key column="ReferenceId" />
<one-to-many class="Comment" />
</bag>
或應用程序:
<class name="Application">
<id name="Id">
<generator class="guid"/>
</id>
<property name="Status" />
<bag name="Comments">
<key column="ReferenceId" />
<one-to-many class="Comment" />
</bag>
但是這個映射只給我一個外鍵,我如何創建集合以對幾個類進行評論?
不知道我是否理解。 ReferenceId是哪個表的外鍵? – 2011-12-14 20:05:48