This documentation is archived and is not being maintained.
IQueryable Methods
Visual Studio 2010
The IQueryable type exposes the following members.
| Name | Description | |
|---|---|---|
|
GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.) |
| Name | Description | |
|---|---|---|
|
AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast<TResult>() | Overloaded. Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
Cast<TResult>() | Overloaded. Converts the elements of an IQueryable to the specified type. (Defined by Queryable.) |
|
OfType<TResult>() | Overloaded. Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
|
OfType<TResult>() | Overloaded. Filters the elements of an IQueryable based on a specified type. (Defined by Queryable.) |
Show: