I looking for an example on how to sort on multiple columns in a TypeList. For example, how do I do the following in LLBLGen?
SELECT OrderID, CustomerID, ShippedDate FROM Orders order by CustomerID ASC, ShippedDate DESC
Thanks!
Please see the section "Best Practices -> How do I? -> How do I sort the fields in a typed list?" in the documentation. This explains how to sort on two fields.