I'm building a simple LinQ-to-object query which I'd like to parallelize, however I'm wondering if the order of statements matter ?
e.g.
IList<RepeaterItem> items;
var result = items
.Select(item => item.FindControl("somecontrol"))
.Where(ctrl => SomeCheck(ctrl))
.AsParallel();
vs.
var result = items
.AsParallel()
.Select(item => item.FindControl("somecontrol"))
.Where(ctrl => SomeCheck(ctrl));
Would there be any difference ?
Absolutely. In the first case, the projection and filtering will be done in series, and only then will anything be parallelized.
In the second case, both the projection and filtering will happen in parallel.
Unless you have a particular reason to use the first version (e.g. the projection has thread affinity, or some other oddness) you should use the second.
EDIT: Here's some test code. Flawed as many benchmarks are, but the results are reasonably conclusive:
Results:
Now there's a lot of heuristic stuff going on in PFX, but it's pretty obvious that the first result hasn't been parallelized at all, whereas the second has.