I have a List<> that I've previously sorted by one of the fields on the object. If I perform a Where() on the list, am I safe to assume that the results of the Where will also be sorted?
// Sorted by salary, greatest to smallest.
List<Players> players = _playerRepo.GetAll().OrderByDescending(x => x.Salary).ToList();
// Is this list safe to assume that the players with smith as last name are sorted by salary as well?
List<Players> filteredPlayers = players.Where(x => x.LastName == "Smith").ToList();