How do I do something like the following, assinging new values based on condition within a linq method but keeping all results.
int x= 100;
var results= from r in Results where r.id==id select r
{ if r.value==x set r.result="Found"}
|
|
How do I do something like the following, assinging new values based on condition within a linq method but keeping all results.
|
||
|
|
|
|
You're not really meant to - ideally queries shouldn't have side effects. I mean you can do:
I'd generally try not to though... Note that this really won't work in LINQ to SQL etc. |
||
|
|
It's probably better to make a second pass so you can keep your query clean and side-effect-free.
|
||
|
|
|
|
Linq should not be used in that way. I would iterate over the results of the query and then change them.
|
||
|
|