How to get List of Parent Entities with Child Coun

2020-07-14 05:34发布

I have two classes :

    public class Parent
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public ICollection<Child> Childrens { get; set; }
    }

    public class Child
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }

Now through Nhibernate QueryOver I want to get list of all Parent with no of Count of children in single query.

Expected output is ?:

ParentId  Name ChildrenCount
1         ABC      10
2         CDE      5

can anyone help me .

1条回答
够拽才男人
2楼-- · 2020-07-14 05:41

Using this DTO for projection:

public class ParentDto
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int ChildrenCount { get; set; }
}

Use this query:

Child childAlias = null;
ParentDto dto = null;

var dtoParents = Session.QueryOver<Parent>()
    .JoinAlias(x => x.Childrens, () => childAlias)
    .SelectList(list => list
        .SelectGroup(x => x.Id).WithAlias(() => dto.Id)
        .SelectGroup(x => x.Name).WithAlias(() => dto.Name)
        .SelectCount(() => childAlias.Id).WithAlias(() => dto.ChildrenCount))
    .TransformUsing(Transformers.AliasToBean<ParentDto>())
    .List<ParentDto>();

You can read more about QueryOver projections using DTOs here.

查看更多
登录 后发表回答