LINQ OrderBy with more than one field January 16, 2023 by Tarik You need to use ThenBy: listOfPeople.OrderBy(person => person.LastName) .ThenBy(person => person.FirstName)