as the same as here: How to do a Sum using Dynamic LINQ I want to do a All() with a dynamic string...
My code:
allDataValid = consumptionModelListOld.All(x => x.F11ValueValid);
I want to write:
allDataValid = consumptionModelListOld.All("F11ValueValid");
How to do this?