When I hit the following line, I always receive a true, regardless of whether "local" appears in the joining Roles table.
if (objUserRoles.Select(x => (x.Role.Role1 == "local")).Count() > 0)
Is my syntax correct?
|
What you need is
Or with
|
|||||||||
|
|
You're looking for:
What you're doing is selecting a series of |
|||
|
|
|
Use Where Extension Method It checks for condition
OR Any Extension Method
|
|||
|
|
|
it is better with a
|
|||
|
|
|
As others have pointed out, .Any() or .Where().Count() will give you what you're looking for. Your code of...
... is actually creating an Hope that clarification makes sense for you! :) |
|||
|
|
|
well, your are not statement transforms anything in your
is a
or even better
|
|||
|
|
.Count() > 0in favour of.Any(). The format enumerates the whole list, the latter exits as soon as one result is found. – Jamiec May 10 '12 at 15:06