Click or drag to resize
IAsyncQueryProviderCreateQueryTElement Method
Creates a new asynchronous enumerable sequence represented by an expression tree.

Namespace: System.Linq
Assembly: System.Interactive.Async.Providers (in System.Interactive.Async.Providers.dll) Version: 1.2.0.0
Syntax
C#
IAsyncQueryable<TElement> CreateQuery<TElement>(
	Expression expression
)

Parameters

expression
Type: System.Linq.ExpressionsExpression
The expression tree representing the asynchronous enumerable sequence.

Type Parameters

TElement
The type of the elements in the sequence.

Return Value

Type: IAsyncQueryableTElement
Asynchronous enumerable sequence represented by the specified expression tree.
See Also