vote up 0 vote down star

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"}
flag

72% accept rate

3 Answers

vote up 2 vote down check

You're not really meant to - ideally queries shouldn't have side effects. I mean you can do:

var results = Results.Where(r => r.id == id)
                     .Select(r => { 
                          if (r.value == x)
                          {
                              r.result = "Found"; 
                          }
                          return r; 
                      };

I'd generally try not to though...

Note that this really won't work in LINQ to SQL etc.

link|flag
would being 'side effect free' also include not creating a new object such as .Select(r=> new SomeObject(){id=r.id,name=r.name}) in the same method? – zsharp Sep 2 at 22:44
@zsharp: That doesn't affect existing objects, so it's okay. – Jon Skeet Sep 3 at 5:21
vote up 2 vote down

It's probably better to make a second pass so you can keep your query clean and side-effect-free.

int x = 100;

List<Result> results = (from r in Results
                        where r.id == id
                        select r).ToList();

results.ForEach(r => r.result = r.value == x ? "Found" : "Not Found");
link|flag
vote up 1 vote down

Linq should not be used in that way. I would iterate over the results of the query and then change them.

 var results= from r in Results where r.id==id select r;

 foreach (var r in results.ToList()) { if (r.value==x) r.result="Found"; }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.