52
A
回答
86
List<int> list = new List<int>() { 1, 2, 3, 4, };
IQueryable<int> query = list.AsQueryable();
如果你沒有看到AsQueryable()
方法,添加一個using語句System.Linq
。
10
相關問題
- 1. IQueryable to IQueryable <T>
- 2. 部隊更新TGT
- 3. convert IQueryable <int> to <int>
- 4. 無法從AD獲得TGT
- 5. Binding Gridview to IList <BusinessObject>包含IList <BusinessObject>
- 6. LINQ:How to convert from ISingleResult <T> to IQueryable <int>
- 7. IQueryable的<t>或者IList的<t>
- 8. IEnumerable <>到IList <>
- 9. IList <IList<T>>到IReadonlyCollection <IReadonlyCollection <T>>
- 10. 轉換字典<MyType> .ValueCollection to IList <MyType>
- 11. 不能設置爲空的特性「TGT」
- 12. GSSManager.createCredential如何獲取Kerberos密鑰和TGT?
- 13. 使用服務負責人獲得TGT
- 14. 由TGT創建iSCSI目標不能
- 15. IQueryable <a> to ObservableCollection <a>其中a =匿名類型
- 16. 轉換「任務<IList<T>>」到「的IList <T>」
- 17. 使用LINQ,如何將IList <IList <object>>轉換爲IList <object>?
- 18. 將IList <Object>投射到IList <CustomObject>?
- 19. Automapper映射IList <>到Iesi.Collections.Generic.ISet <>
- 20. 投的IList <int>到IList的<string>
- 21. 自IList <object_type>
- 22. 使用列表<T>與IList的<T>
- 23. IQueryable <Entity>在LINQ與嵌套對象IQueryable <DTO>
- 24. 轉換IQueryable的<IEnumerable的<Entity>>到的IQueryable <Entity>
- 25. 如何實例化嵌套IList <T>的IList <T>?
- 26. IList的C#參數<IList <(ClassType)>>
- 27. 將IList <T1>轉換爲IList <BaseT1>
- 28. 如何初始化IList <IList <string>>?
- 29. AutoMapper:複製的IList <>到的IList <>
- 30. 是否收集<T>包裝IList <T>或枚舉IList <T>?
如果你有興趣的話,你可以做很長的路要走:從q中查詢選擇q或list.Select(q => q)都會讓你成爲IQueryable –
2011-01-24 15:02:40