I have a TypedView that contains a one to many relationship. That is, I have a CustomerOrders TypedView that contains each customer's orders. In my query I'd like to return records with DISTINCT customers. For example, if a customer named "Acme" placed 3 orders, I only want 1 record returned not 3.
I realize I could probably create a dynamic typed list, however I was hoping I wouldn't need to resort to this since I would lose some flexibility. Any help would be greatly appreciated.