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.

I have an IEnumerable< Person> object. The Person class has a Designation proeprty.

I want to select distinct Designation values from IEnumerable< Person> and assign that to a DropDownList. How can I do it?

share|improve this question

2 Answers

up vote 11 down vote accepted
var designations = persons.Select(p => p.Designation).Distinct();
share|improve this answer
  • Get every item
  • Remove duplicates
  • Add them to drop down list.

Or:

  • Get item by item
  • Check whethe ralready in list
  • If not, add.

Basic programming.

share|improve this answer
7  
Bad answer. Basic programming is reading the API first and not re-inventing the wheel. – Joe May 10 '10 at 19:22

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.