IList < T > 到 IQueryable < T >

我有一个 List,我想把它包装成一个 IQueryable。

这可能吗?

27759 次浏览
List<int> list = new List<int>() { 1, 2, 3, 4, };
IQueryable<int> query = list.AsQueryable();

If you don't see the AsQueryable() method, add a using statement for System.Linq.

Use the AsQueryable<T>() extension method.