Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表,我想将它包装到一个 IQueryable 中。
这可能吗?
List<int> list = new List<int>() { 1, 2, 3, 4, }; IQueryable<int> query = list.AsQueryable();
如果您没有看到该AsQueryable()方法,请为 . 添加 using 语句System.Linq。
AsQueryable()
System.Linq
使用AsQueryable<T>()扩展方法。
AsQueryable<T>()