SQL query:
select ApplicationNumber,pri_indicator,count(*) from customer
group by ApplicationNumber,pri_indicator
How do I do this in LINQ?
I see plenty of results on using a simple group by to count a single field, but can't seem to find any or figure out how to do multiple fields.