如何使用ICriteria Projections获取嵌套对象

时间:2013-06-07 10:46:33

标签: nhibernate nhibernate-criteria nhibernate-projections

我有这样的数据模型:

class Hand {
    public int id;
    ...
}
class Person {
    public int id;
    public string name;
    public IList<Hand> hands;
    ...
}

要从数据库获取数据,我这样做:

ICriteria criteria = databaseSession.CreateCriteria(typeof(Person));

ProjectionList projections = Projections.ProjectionList();

projections
    .Add(Projections.Property("id").As("id"))
    .Add(Projections.Property("name").As("name"))
    .Add(Projections.Property("hands").As("hands"));

projections.Add(Projections.GroupProperty("id"));
projections.Add(Projections.Count("id"), "count");

criteria.SetProjection(projections);

criteria.SetResultTransformer(
    NHibernate.Transform.Transformers.AliasToBean(typeof(PersonDTO)));

但是NHibernate不会在hands属性中加载嵌套对象。它只是给出null。 任何人都可以帮助我如何填充嵌套对象(对于多个级别的深度)。使用投影而不是查询对我来说会更好。 注意:它不会在映射中出现问题,因为当我在没有任何投影的情况下加载数据时,它运行良好。

1 个答案:

答案 0 :(得分:1)

可能的解决方案

var query = databaseSession.CreateCriteria(typeof(Person))
    .JoinAlias("hands", "hand")
    .SetProjection(Projections.ProjectionList()
        .Add(Projections.Property("Id"))
        .Add(Projections.Property("Name"))
        .Add(Projections.Property("hand.Id"))
        .Add(Projections.Property("hand.Foo")))
    .List<object[]>()
    .GroupBy(arr => (int)arr[0])
    .Select(g => new PersonDTO
    {
        Id = g.Key,
        Name = g.First().Name,
        Hands = g.Select(arr => new Hand { Id = arr[2], Foo = arr[3] }).ToList(),
    });

var results = query.ToList();