I'd like to do the equivalent of the following in LINQ, but I can't figure out how:
IEnumerable<Item> items = GetItems();
items.ForEach(i => i.DoStuff());
What is the real syntax?
|
2
|
I'd like to do the equivalent of the following in LINQ, but I can't figure out how:
What is the real syntax?
|
|||
|
|
|
|
There is no ForEach extension for IEnumerable; only for List. So you could do
Alternatively, write your own ForEach extension:
|
||||||||||
|
|
|
Fredrik has provided the fix, but it may be worth considering why this isn't in the framework to start with. I believe the idea is that the LINQ query operators should be side-effect-free, fitting in with a reasonably functional way of looking at the world. Clearly ForEach is exactly the opposite - a purely side-effect-based construct. That's not to say this is a bad thing to do - just thinking about the philosophical reasons behind the decision. |
||||||
|
|
|
If you can use IQueryable<T> instead of IEnumerable<T>, then the Select method should do what you want.
LINQ's select method doesn't really have anything in common with the SQL SELECT keyword; what it does is apply a function to each element in a set, and return a set containing the results of those functions. |
||||
|
|
|
There is none. You have to use the 'foreach' keyword, or do it C# 1.0 style. |
||
|
|
|
I respectually disagree with the notion that link extension methods should be side-effect free (not only because they aren't, any delegate can perform side effects). Consider the following:
What the example shows is really just a kind of late-binding that allows one invoke one of many possible actions having side-effects on a sequence of elements, without having to write a big switch construct to decode the value that defines the action and translate it into its corresponding method. |
|||
|