I have a collection of order objects (properties – date, amount and vendor). I need to prepare a report showing spend by vendor by month since 01/01/2009.
How can i get the results using LINQ?
I have a collection of order objects (properties – date, amount and vendor). I
Share
Something like:
That will group by vendor, month and year.