我有一个使用 NHibernate 映射的遗留数据库。关注的对象是一个 Account 和一个 Notification 对象列表。对象看起来像:
public class Notification
{
public virtual int Id { get; set; }
public virtual DateTime BatchDate { get; set; }
/* other properties */
public virtual Account Account { get; set; }
}
public class Account
{
public virtual int Id { get; set; }
public virtual string AccountNumber { get; set; }
/* other properties */
}
映射文件如下所示:
<class name="Account" table="Account" dynamic-update="true">
<id name="Id" column="AccountID">
<generator class="native" />
</id>
<property name="AccountNumber" length="15" not-null="true" />
<!-- other properties -->
</class>
<class name="Notification" table="Notification">
<id name="Id" column="Id">
<generator class="native" />
</id>
<!-- other properties -->
<many-to-one name="Account" class="Account" property-ref="AccountNumber" lazy="proxy">
<column name="AcctNum" />
</many-to-one>
但是,当我创建一个标准时,例如
return session.CreateCriteria(typeof(Notification)).List<Notification>();
我得到一个 Select N+1 案例,其中每个帐户都被加载,即使该帐户从未被引用。当多对一映射为惰性代理时,为什么所有帐户都被加载?