I\'m creating a mock data source that I want to be able to pass in a list of SortExpressions on.
public SortExpression(string name, SortDirection direction)
This will work:
YourCollection.Orderby(item => item.Property1).ThenBy(item => item.Property2);