Class IQueryableExtensions
IQueryable<T> extension methods.
Inherited Members
Namespace: Microsoft.GNS.Roster.DataAccess
Assembly: Microsoft.GNS.Roster.DataAccess.dll
Syntax
public static class IQueryableExtensions
Methods
View SourceExecuteQueryAsync<T>(IQueryable<T>)
Executes a query and returns it as an IAsyncEnumerable<T>
Declaration
public static IAsyncEnumerable<T> ExecuteQueryAsync<T>(this IQueryable<T> query)
Parameters
| Type | Name | Description |
|---|---|---|
| IQueryable<T> | query | The query object. |
Returns
| Type | Description |
|---|---|
| IAsyncEnumerable<T> |
Type Parameters
| Name | Description |
|---|---|
| T | The type returned in the async enumerable. |