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>()