Hello,
I don't know if this is a question for the generated code forum or Linq forum, but I will try it here.
I have an EntityCollection<WhateverEntity>.
I want to set all the values of 1 particular field, for each entity in the collection, to a specific value. Currently, I iterate through the collection via for/each and set the field value.
Is there a way to perform an 'Update' to a property of each entity in the in memory EntityCollection<T> via a lambda expression or LL EntityCollection method via 1 line code?
Thanks.
Can1