I'm still very new to LINQ and PLINQ. I generally just use loops and List.BinarySearch
in a lot of cases, but I'm trying to get out of that mindset where I can.
public class Staff
{
// ...
public bool Matches(string searchString)
{
// ...
}
}
Using "normal" LINQ - sorry, I'm unfamiliar with the terminology - I can do the following:
var matchedStaff = from s
in allStaff
where s.Matches(searchString)
select s;
But I'd like to do this in parallel:
var matchedStaff = allStaff.AsParallel().Select(s => s.Matches(searchString));
When I check the type of matchedStaff
, it's a list of bool
s, which isn't what I want.
First of all, what am I doing wrong here, and secondly, how do I return a List<Staff>
from this query?
public List<Staff> Search(string searchString)
{
return allStaff.AsParallel().Select(/* something */).AsEnumerable();
}
returns IEnumerable<type>
, not List<type>
.
There is no need to abandon normal LINQ syntax to achieve parallelism. You can rewrite your original query:
The parallel LINQ (“PLINQ”) version would be:
To understand where the
bool
s are coming from, when you write the following:That is equivalent to the following query syntax:
As stated by darkey, if you want to use the C# syntax instead of the query syntax, you should use
Where()
:For your first question, you should just replace
Select
withWhere
:Select
is a projection operator, not a filtering one, that's why you are getting anIEnumerable<bool>
corresponding to the projection of all your Staff objects from the input sequence to bools returned by yourMatches
method call.I understand it can be counter intuitive for you not to use
select
at all as it seems you are more familiar with the "query syntax" where select keyword is mandatory which is not the case using the "lambda syntax" (or "fluent syntax" ... whatever the naming), but that's how it is ;)Projections operators, such a
Select
, are taking as input an element from the sequence and transform/projects this element somehow to another type of element (here projecting tobool
type). Whereas filtering operators, such asWhere
, are taking as input an element from the sequence and either output the element as such in the output sequence or are not outputing the element at all, based on a predicate.As for your second question,
AsEnumerable
returns anIEnumerable
as it's name indicates ;) If you want to get aList<Staff>
you should rather callToList()
(as it's name indicates ;)) :Hope this helps.