Hello,
I have this code
foreach (MyType o in myList)
{
var res = from p in myOriginalList
where p.PropertyA == o.PropertyA && p.PropertyB == o.PropertyB
select p;
//Need to update myOriginalList
//....
}
I'd like in the myOriginalList do an update for each record found by the Linq select. How can I do this ?
Thanks,