I know this was asked for a year, but here are my two cents.
In the example shown, I think it uses AsSequential so that the next query statement (in this case, the Take statement) is executed sequentially.
However, the Take statement prevents query parallelization if the original elements are not in the initial indexing position, so even when you delete the AsSequential statement, the result is still sorted.
Subos
source share