Using GroupBy in Linq Reporting

Just posting this cause Aspose documentation is sheet! Hope it helps someone else.

This is the syntax we used to get display Count on GroupBy

<<foreach[g in Entities.GroupBy(e=>e.Status)]>><<[g.Count()]>> <<[g.Key]>><</foreach>>

2 Likes

@airbags Thank you for sharing your experience.