IQueryable Methods
Silverlight
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<TResult>() | Overloaded. Converts 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.) |
Community Additions
ADD
Show: