Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an List and I'd like to wrap it into an IQueryable.

Is this possible?

share|improve this question

2 Answers

up vote 34 down vote accepted
List<int> list = new List<int>() { 1, 2, 3, 4, };
IQueryable<int> query = list.AsQueryable();
share|improve this answer
Cheers, I was hoping it would be a one liner. – Squirrel Sep 16 '08 at 15:32
1  
If you interested in the long way you could do: from q in query select q or list.Select(q => q) both would also get you an IQueryable<T> – Nick Daniels Jan 24 '11 at 15:02

Use the AsQueryable<T>() extension method.

share|improve this answer
is it an expensive operation? AsQueryable on List ? – Eatdoku May 16 '12 at 21:01

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.