I need to update all properties in a list object using linq.
For example: I have a list of users with names (Name, Email, PhoneNo, ...) as properties. I get a User List ( List<Users>) from the database, filled with all the properties except Email. I need to update all the email properties in the list after retrieving some email in the session from the database.
How can i do this?
source
share