我无法确定“Where”子句在以下 LINQ 查询中的位置:
Dim counts = eDTKBase.AsEnumerable(). _
GroupBy(Function(r) r.eDTK_PLI.). _
Select(Function(g) New With { _
.PLI_Code = g.Key, _
.CountPDP = g.Select(Function(r) r.eDTK_PDP_Code.). _
Distinct(). _
Count() _
我希望 where 子句过滤计数大于 1 的记录。任何人都可以帮忙吗?谢谢。