IQueryable Methods
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
The IQueryable type exposes the following members.
| Name | Description | |
|---|---|---|
|
GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.) |
| Name | Description | |
|---|---|---|
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast(Of TResult) | Overloaded. Converts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
Cast(Of TResult) | Overloaded. Converts the elements of an IQueryable to the specified type. (Defined by Queryable.) |
|
OfType(Of TResult) | Overloaded. Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
|
OfType(Of TResult) | Overloaded. Filters the elements of an IQueryable based on a specified type. (Defined by Queryable.) |
Show: