gpt4 book ai didi

c# - 如何在 nhibernate 查询中添加 groupby?

转载 作者:太空狗 更新时间:2023-10-30 00:15:54 25 4
gpt4 key购买 nike

我如何将 groupby Id 添加到这个 nhibernate 代码,因为我是新手,有很多方法但没有一个对我有用。

.Select(Projections.Sum(() => ServiceOrderItem.WorkTime), 
Projections.ProjectionList().Add(Projections.Property(
() => ServiceOrder.Id).WithAlias(() => TechnicianWorkTime.Id))
)

ProjectionList中还会有更多...

最佳答案

你可以使用SelectList:

query.SelectList(list => list
.SelectGroup(() => ServiceOrder.Id)
.SelectSum(() => ServiceOrderItem.WorkTime));

关于c# - 如何在 nhibernate 查询中添加 groupby?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10602543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com