Help for this page
var sorted = someList.OrderBy( _ => _.Foo ).ThenBy( _ => _.Bar );
var sorted = from item in someList orderby item.Foo, item.Bar select item;