Antworten:
So was:
from c in db.Company
group c by c.Name into grp
where grp.Count() > 1
select grp.Key
Oder verwenden Sie die Methodensyntax:
Company
.GroupBy(c => c.Name)
.Where(grp => grp.Count() > 1)
.Select(grp => grp.Key);
Für alle, die dies in vb tun möchten (so wie ich war und nichts finden konnte)
From c In db.Company
Select c.Name Group By Name Into Group
Where Group.Count > 1
Group By
nach der Select
Klausel in VB steht.
Die folgende Lösung kann Ihnen helfen.
var unmanagedDownloadcountwithfilter = from count in unmanagedDownloadCount.Where(d =>d.downloaddate >= startDate && d.downloaddate <= endDate)
group count by count.unmanagedassetregistryid into grouped
where grouped.Count() > request.Download
select new
{
UnmanagedAssetRegistryID = grouped.Key,
Count = grouped.Count()
};