Linq with group by having count

2019-01-03 16:05发布

how do I write this query in linq (vb.net)?

 select B.Name
 from Company B
 group by B.Name
 having COUNT(1) > 1

2条回答
Juvenile、少年°
2楼-- · 2019-01-03 17:02

For anyone looking to do this in vb (as I was and couldn't find anything)

From c In db.Company 
Select c.Name Group By Name Into Group 
Where Group.Count > 1
查看更多
聊天终结者
3楼-- · 2019-01-03 17:06

Like this:

from c in db.Company
group c by c.Name into grp
where grp.Count() > 1
select grp.Key

Or, using the method syntax:

Company
    .GroupBy(c => c.Name)
    .Where(grp => grp.Count() > 1)
    .Select(grp => grp.Key);
查看更多
登录 后发表回答