Is it possible to set property on each element from List using LINQ.
for example:
var users = from u in context.Users where u.Name == \"George\" sele
If you're interested in in-memory update, that is the database is not going to be updated then you could use
var users = (from u in context.Users where u.Name == "George" select u).ToList(); users.ForEach(u => u.MyProp = "Something");