0
Q:

linq to update a list

customers.Where(c => c.IsValid).Select(c => { c.CreditLimit = 1000; return c; }).ToList();
0
var newCustomers = customers.Where(c => c.IsValid).Select(c => { c.CreditLimit = 1000; return c; });
0

New to Communities?

Join the community