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 a list of Tenants (call it TenantList), and it's composed of Tenant objects and they all have an ID property. How can I return an enumerable item composed of their ID properties?

share|improve this question

3 Answers

up vote 9 down vote accepted

You can use either

var result = TenantList.Select(t => t.ID)

or

var result = from tenant in TenantList select tenant.ID
share|improve this answer
What's the difference? – Malfist Jul 21 '10 at 16:07
There's no difference. The query syntax is actually transformed into the extension method syntax under the covers. They're just different ways of expressing the same query. As you get more comfortable with linq, you will find that one or the other is more appropriate, depending on the context. – Nader Shirazie Jul 21 '10 at 16:10
Syntactic sugar. The second form gets "preprocessed" into the first form when the code is compiled (shamelessly ripped off from Jon Skeet's C# in Depth). – Eric Jul 21 '10 at 16:10
TenantList.Select(t => t.ID)
share|improve this answer
TenantList.Select(t => t.ID);
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.