0

不确定我在这里用 NHibernate 做错了什么。我有两个映射文件映射到两个表。我可以通过映射将数据插入到数据库中,但是调用下面的代码会返回 0,即使我可以看到在表中填充了具有正确外键的子行。这是延迟加载问题吗?谢谢。

var result = session.Get<AnnualReport>(annualReport.ReportID);
Assert.AreEqual(result.MonthlyReports.Count, 1);  

这是我的映射文件。

年报类

<joined-subclass name="AnnualReport" extends="Report" table="AnnualReports" >  

<key column="ReportID"/>

<property name="MonthlySendDate" /> 

<bag name="MonthlyReports" lazy="true" inverse="true">
  <key column="ReportID" />
  <one-to-many class="MonthlyReport"/>
</bag>

<many-to-one name="Client" column="ClientID" not-null="true" /></joined-subclass>

月报班

 <joined-subclass name="MonthlyReport" extends="Report" table="MonthlyReports">

<key column="ReportID"/>
<property name="SentDate" />

<many-to-one name="AnnualReport" class="AnnualReport" column="AnnualReportID"  not-null="true"/>

<bag name="MarketReports" cascade="all">
  <key column="MonthlyReportID" />
  <one-to-many class="MarketReport"/>
</bag>

4

1 回答 1

0

感谢您的回复史蒂夫,我已经设法弄清楚了。外键映射不正确.. 下面修复了问题,现在正在加载集合。

<bag name="MonthlyReports" lazy="true" inverse="true">
  <key column="AnnualReportID" />
  <one-to-many class="MonthlyReport"/>
</bag>
于 2010-02-26T12:05:54.143 回答