Say I have an entity that looks something like this simple example:
MyEntity { int property1; int property2; int property3; }
Now ass
Like this:
var result = GetMyIEnumerable() .ToList(); result.ForEach(x => x.property1 = 100);