标签: c# linq
如何在多个元素上选择使用groupby?
Docs.GroupBy(x => x.FieldA, x.FieldB )
感谢。
答案 0 :(得分:4)
使用匿名类型对象:
Docs.GroupBy(x => new {x.FieldA, x.FieldB} )