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 list of values separated by commas, I need to pass those values to query and get the values from database using .net entity framework, how to write the query in LINQ without using for/foreach loop

share|improve this question
What have you against loops? Also, it's hard to tell what exactly are you asking. Could you provide same example? – svick Jan 30 '12 at 14:12

closed as not a real question by Ash Burlaczenko, TJHeuvel, svick, Martin Harris, hakre Jan 30 '12 at 17:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can use String.Split to split a string into an array; as such:

"1,2,3,4,5".Split(',')
share|improve this answer
btw; is it just me or is MSDN acting up? Everything i search returns 404 :O – TJHeuvel Jan 30 '12 at 10:31
seems to be working fine from my end. – Prisoner Jan 30 '12 at 10:36
Ok, thanks anyway :) – TJHeuvel Jan 30 '12 at 10:43

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