Let\'s say I have a List of Songs.
Song { public string Name = \"\"; public int PlayOrder = 0; }
Now I want to sort them first
return final.OrderBy(s => s.PlayOrder).ThenBy(s => s.Name);