vote up 4 vote down star

I have a List data, but I want a IQueryable data , is it possible from List data to IQueryable data? Show me code

flag
just a recommendation; a little effort! press "." and look up for a solution. try to solve it by yourself before ask it. intellisense will solve, if you don't! – yapiskan Mar 24 '09 at 8:29

2 Answers

vote up 11 vote down check
var list = new List<string>();
var queryable = list.AsQueryable();
link|flag
vote up 0 vote down

Real Dupe

the first link was a miss :)

link|flag
Not a dupe. That question refers to IEnumerable - IQueryable isn't mentioned in either the question or the answers. – Jon Skeet Mar 24 '09 at 8:14
Found a dupe, the first link was a miss – roman m Mar 24 '09 at 8:25

Your Answer

Get an OpenID
or
never shown

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