多个多对一到一个表

时间:2011-03-20 04:03:49

标签: nhibernate nhibernate-mapping

我有一个Product表,其中包含两个多对一引用(Title& Description)到一个名为TextRef的表:

产品:

<many-to-one lazy="false" name="Title" class="TextRef" column="TitleRef" fetch="join" cascade="save-update"/>
<many-to-one lazy="false" name="Description" class="TextRef"  column="DescriptionRef" fetch="join" cascade="save-update"/>

每个TextRef都有一对多的TextRefItem表:

<bag lazy="false" name="Values" table="TextRefItem" cascade="save-update" inverse="true" fetch="join">
  <key column="TextId"></key>
  <one-to-many class="TextRefItem"/>
</bag>

现在我想加载Title&amp;的所有TextRefItem(s)描述一下,但NHibernate只用第一个引用(Title)

创建一个连接
SELECT this_.ProductId as ProductId7_2_, this_.CategoryId as CategoryId7_2_, 
this_.DescriptionRef as Descript3_7_2_,
textref2_.TextId as TextId8_0_, values3_.TextId as TextId4_, 
values3_.TextItemId as TextItemId4_, values3_.TextItemId as TextItemId9_1_,values3_.LangId as LangId9_1_,
values3_.Text as Text9_1_, values3_.TextId as TextId9_1_ 
FROM
Product this_
inner join TextRef textref2_ on this_.DescriptionRef=textref2_.TextId
left outer join TextRefItem values3_ on textref2_.TextId=values3_.TextId
WHERE this_.ProductId = 1

对于另一个(描述),它进行单独的选择查询

我怎么能告诉NHibernate避免这种情况?

1 个答案:

答案 0 :(得分:1)

我不知道为什么对第二个引用(描述)进行单独的查询。但是可以通过标准扩展提取策略,一次性加载所有TextRef和TextRefItems的产品:

var criteria = session.CreateCriteria(typeof(Product))
   .SetFetchMode("Description.Values", FetchMode.Join);

criteria.SetResultTransformer(new DistinctRootEntityResultTransformer());
criteria.Add(Restrictions.Eq("ProdId", 1));
var list = criteria.List<Product>();