作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的数据库中有一个表。
`tblCustomers`
- CustomerId
- CustomerName
CustomerName
分组,但至少应该有一个以上的
customername
出现。
name = "ABC"
的客户,则将它们分成一个数组,而将其与
customer
组合成1个
name = "XYZ"
(仅具有此名称的一条记录)不要得到。
var query = (from c in entities.tblCustomers
group c.CustomerName into cust
//where cust.Key.Count >=2 (how to get this)
select ABC()
{
});
最佳答案
可能是这样的:
from c in entities.tblCustomers
group c by c.CustomerName into cust
where cust.Count() > 1
select cust.Key
关于c# - 如何在我的LINQ中获得所需的收藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41789328/
我是一名优秀的程序员,十分优秀!