I have an List and I'd like to wrap it into an IQueryable.
Is this possible?
List<int> list = new List<int>() { 1, 2, 3, 4, }; IQueryable<int> query = list.AsQueryable();
Use the AsQueryable<T>() extension method.
AsQueryable<T>()
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
4 years ago
viewed
5561 times
active
10 months ago