如何使用扩展方法在组上使用计数?
我需要像 linq 上的 sql server 一样使用 get count(*) ,如何使用扩展方法来做到这一点? 这就是我想做的
var test = empire.Case_Offence.Join( empire.Offences , w => w.OffenceId ,
x => x.Id ,
( w , x ) => new { w.Id , w.OffenceId , x.Name } )
.GroupBy( ww => new {ww.Name, ww.Id,ww.OffenceId } ) ;
tnx :)
I need to use get count(*) like sql server on linq, how can I use extenstion methods to do that ?
here is what I am trying to do
var test = empire.Case_Offence.Join( empire.Offences , w => w.OffenceId ,
x => x.Id ,
( w , x ) => new { w.Id , w.OffenceId , x.Name } )
.GroupBy( ww => new {ww.Name, ww.Id,ww.OffenceId } ) ;
tnx :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
test
将是一组带有两个参数的匿名类型 -Key
- 分组键,以及Count
- 数量带有该键的项目。Try:
test
will then be a set of anonymous types with two parameters -Key
- the group-by key, andCount
- the number of items with that key.