13

我将 NHibernate 3.0 与 LINQ 提供程序和 QueryOver 一起使用。有时我想急切地加载相关数据,在 LINQ 和 QueryOver 中都有方法“Fetch”来救援。现在我有一个特殊的场景,我想不直接在第二级加载一个属性,比如:

Foo f = ...;
f.A.B.C

使用 LINQ 没有问题,因为您可以使用“ThenFetch”方法“链接”获取,例如:

var result = Session.Query<Foo>().Fetch(a => a.A).ThenFetch(b => b.B).ThenFetch(c => c.C).ToList();

在 QueryOver 中没有这样的方法,那么我怎样才能达到相同的结果呢?

提前致谢。

4

3 回答 3

16

我实际上设法使用两种不同的方法解决了这个问题:

方法一:

Session.QueryOver<Foo>().Fetch(x => x.A).Fetch(x => x.A.B).Fetch(x => x.A.B.C)

方法二:

A a = null;
B b = null;
C c = null;

Session.QueryOver<Foo>()
    .JoinAlias(x => x.A, () => a)
    .JoinAlias(() => a.B, () => b)
    .JoinAlias(() => b.C, () => c)

两者都有效(尽管我不确定其中一个是否生成了“内部”而另一个生成了“外部”连接)。

于 2011-01-26T12:42:06.830 回答
16

出于好奇,我会在NHibernate Jira上发布他们给我的回复:

query 
    .Fetch(p => p.B) 
    .Fetch(p => p.B.C) // if B is not a collection ... or 
    .Fetch(p => p.B[0].C) // if B is a collection ... or 
    .Fetch(p => p.B.First().C) // if B is an IEnumerable (using .First() extension method) 
于 2011-12-20T16:17:17.163 回答
4

我认为您可以使用 JoinQueryOver 做到这一点

IQueryOver<Relation> actual =
   CreateTestQueryOver<Relation>()
    .Inner.JoinQueryOver(r => r.Related1)
    .Left.JoinQueryOver(r => r.Related2)
    .Right.JoinQueryOver(r => r.Related3)
    .Full.JoinQueryOver(r => r.Related4)
    .JoinQueryOver(r => r.Collection1, () => collection1Alias)
    .Left.JoinQueryOver(r => r.Collection2, () => collection2Alias)
    .Right.JoinQueryOver(r => r.Collection3)
    .Full.JoinQueryOver(r => r.People, () => personAlias); 
于 2011-01-26T11:08:25.657 回答