Say I have an entity that looks something like this simple example:
MyEntity { int property1; int property2; int property3; }
Now ass
Here are two solutions that I found that worked for me.
result = result.Where(x => (x.property1 = 100) == 100).ToList();
or
result = result.Select(c => { c.property1 = 100; return c; }).ToList();