Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
public class Company
        {
            public int id {get; set;}
            public int Name {get; set;}
        }
        List<Company> listofCompany= new List<Company>();

this is my collection of company list I want to assign values to Name property using LINQ

listofCompany.Where(d=>d.Id= 1) ;

(I want to assing name property of company id 1)

how do I assign it.?

share|improve this question

3 Answers

up vote 14 down vote accepted

using Linq would be:

 listOfCompany.Where(c=> c.id == 1).FirstOrDefault().Name = "Whatever Name";

UPDATE

For multiple items (condition is met by multiple items):

 listOfCompany.Where(c=> c.id == 1).ToList().ForEach(cc => cc.Name = "Whatever Name");
share|improve this answer
how we can achieve following query for multiple elements listOfCompany.Where(c=> c.id == 1).FirstOrDefault().Name = "Whatever Name"; – PramodChoudhari Mar 21 '11 at 10:57
1  
See my update please. – Aliostad Mar 21 '11 at 11:12
You can shorten your first example to listOfCompany.FirstOrDefault(c=> c.id == 1).Name = "Whatever Name"; – Noah Heldman Oct 9 '12 at 23:17

Be aware that it only updates the first company it found with company id 1. For multiple

 (from c in listOfCompany where c.id == 1 select c).First().Name = "Whatever Name";

For Multiple updates

 from c in listOfCompany where c.id == 1 select c => {c.Name = "Whatever Name";  return c;}
share|improve this answer

You can create a extension method:

public static IEnumerable<T> Do<T>(this IEnumerable<T> self, Action<T> action) {
    foreach(var item in self) {
        action(self);
        yield return item;
    }
}

And then use it in code:

listofCompany.Do(d=>d.Id = 1);
listofCompany.Where(d=>d.Name.Contains("Inc")).Do(d=>d.Id = 1);
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.