Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the most succint/simple way of updating a single property of a specific item within a collection using LINQ?

For example if I have a List of the following:

public class Ticket
{
    public string Name { get; set; }
    public string Code { get; set; }
    public bool Selected { get; set; }
}

How can I use LINQ to update the "Selected" property of a Ticket item wheres its "Name" property has the value of "Beach". In SQL it would be:

UPDATE Tickets SET Selected = true WHERE Name = 'Beach'

I thought I was on the right track with this...

tickets.Select(x => { x.Selected = true; return x; }).ToList().Where(x => x.Name == "Beach");
share|improve this question

2 Answers

up vote 15 down vote accepted

You can change the order, then use the ForEach operator:

tickets
   .Where(x => x.Name == "Beach")
   .ToList()
   .ForEach(x => { x.Selected = true; });

Note:

  • that the ToList() is needed because IEnumerable doesn't support ForEach in Linq - see LINQ equivalent of foreach for IEnumerable<T>
  • that for readability it might be better to separate this out into a linq query and then a more conventional foreach(x in list) C# loop
  • if this is linq-to-sql, then you'll need to call SubmitChanges() in order to persist your changes.
share|improve this answer
Why ToList()? Sure it was in the OP, but it is probably unnecessary overhead. – Chris Shouts Mar 15 '11 at 20:19
The reason is - stackoverflow.com/questions/200574/… – Stuart Mar 15 '11 at 20:19
IEnumerable doesn't support .ForEach(), so it's needed. – BrokenGlass Mar 15 '11 at 20:19

Let me start off by saying this, don't use LINQ to set properties like that, that's not how LINQ's meant to be used.

You should write the query to select the rows to be changed, change them in a loop, and submit the changes to the database (if LINQ to SQL).

var query = tickets.Where(ticket => ticket.Name == "Beach");
foreach (var item in query)
    item.Selected = true;

// if LINQ to SQL
context.SubmitChanges();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.