Multiple Order By with LINQ [duplicate] October 6, 2022 by Tarik You can use the ThenBy and ThenByDescending extension methods: foobarList.OrderBy(x => x.Foo).ThenBy( x => x.Bar)