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