I have a very simple grouping and aggregation problem in LINQ to SQL that I just can’t figure out, and it is driving me mad.
I’ve simplified things into this example:
class Customer {
public Guid Id;
public String Name;
}
class Order {
public Guid Customer_Id;
public double Amount;
}
How do I get a list of customers ordered by the number of orders they have? And on the total amount they have purchased for?
1 Answer