Nhibernate - 为什么在插入child时尝试插入现有的父行

时间:2009-08-28 13:09:51

标签: nhibernate parent

我不明白为什么NHibernate试图插入父对象 - 当数据库中已存在该行时 - 当我插入子行时。

父映射:

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" auto-import="true">
<class name="ReportDistribution.Client.ReportMgr.Model.ClientReport, ReportDistribution.Client.ReportMgr.Model" 
     table="ClientReport" 
     lazy="false"
     dynamic-update="true">
<id name="Id" access="property" column="ReportID">
  <generator class="assigned"></generator>
</id>
<property name="MaxAge" access="property" />
<property name="DeleteUnread" access="property" />
<property name="Description" access="property" />
<property name="Name" access="property" />
<bag name="ClientPublications" cascade="all" lazy="false">
  <key column="ReportID" />
  <one-to-many class="ReportDistribution.Client.ReportMgr.Model.ClientPublication, ReportDistribution.Client.ReportMgr.Model" />        
</bag>
</class>  
</hibernate-mapping>

子映射:

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" auto-import="true">
<class name="ReportDistribution.Client.ReportMgr.Model.ClientPublication, ReportDistribution.Client.ReportMgr.Model" 
   table="ClientPublication" 
   lazy="false"
   dynamic-update="true">
<id name="Id" access="property" column="PublicationID">
  <generator class="assigned"></generator>
</id>  
<property name="CreatedOn" access="property" type="DateTime"></property>
<property name="IsMarkedForDeletion" access="property"></property>
<property name="IsDeleted" access="property"></property>
<property name="HasBeenRead" access="property"></property>
<property name="ReceivedOn" access="property" type="DateTime"></property>
<property name="FileExtension" access="property"></property>  
<property name="IsDownloaded" access="property"></property>
<property name="MustRead" access="property"></property>
<many-to-one    
  name="Report"
  class="ReportDistribution.Client.ReportMgr.Model.ClientReport, ReportDistribution.Client.ReportMgr.Model"
  lazy="false"
  column="ReportID">
</many-to-one>
</class>
</hibernate-mapping>

Parent类(Report)具有属性,该属性是子类的集合。 Child类(Publication)具有作为父对象的属性。

提前致谢....

1 个答案:

答案 0 :(得分:0)

听起来,在您保存孩子时,父对象不再连接到会话。 HNibernate跟踪连接到会话的实体的状态,但如果实体变为分离,则它将失去跟踪状态的能力。

可以这样想 - 如果一个实体没有通过您正在使用的ISession的确切实例,那么它就不知道它存在。因此,它将从未见过的所有东西视为“新的”。

一种选择可能是使用ISession.Load(实体);在保存之前重新加载您的父母。