gpt4 book ai didi

c# - 使用动态 linq 查询聚合函数 Count()

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:54 25 4
gpt4 key购买 nike

我正在尝试使用动态 linq 查询在某些列上使用 聚合函数 Count() 但我无法实现,我正在寻找的是

Select Count(Id),Id 
from Table1
Group By Id
Having Count(Id) > 1

我想将相同的查询转换为动态 linq 查询,关于如何实现这一点有什么建议吗?

最佳答案

盗自 here :

var distinctItems = 
from list in itemsList
group list by list.ItemCode into grouped
where grouped.Count() > 1
select grouped;

关于c# - 使用动态 linq 查询聚合函数 Count(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19003873/

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