I have IQueryable baseList
and List someData
What I want to do is update attributes in some
LINQ is for querying - not for updating. That means it'll be fine to use LINQ to find the corresponding item, but for the modification you should be using iteration.
Admittedly you might want to perform some appropriate query to get baseList into an efficient form first - e.g. a Dictionary based on the property you'll be using to find the corresponding item.