  | CargoRecordQueryableExtensionsAsAsyncEnumerableT Method | 
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.Cargo.LinqAssembly: WikiClientLibrary.Cargo (in WikiClientLibrary.Cargo.dll) Version: 0.9.0-int.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntaxpublic static IAsyncEnumerable<T> AsAsyncEnumerable<T>(
	this IQueryable<T> queryable
)
<ExtensionAttribute>
Public Shared Function AsAsyncEnumerable(Of T) ( 
	queryable As IQueryable(Of T)
) As IAsyncEnumerable(Of T)
Dim queryable As IQueryable(Of T)
Dim returnValue As IAsyncEnumerable(Of T)
returnValue = queryable.AsAsyncEnumerable()
public:
[ExtensionAttribute]
generic<typename T>
static IAsyncEnumerable<T>^ AsAsyncEnumerable(
	IQueryable<T>^ queryable
)
[<ExtensionAttribute>]
static member AsAsyncEnumerable : 
        queryable : IQueryable<'T> -> IAsyncEnumerable<'T> Parameters
- queryable  IQueryableT
 - the input queryable that should have implemented IAsyncEnumerableT.
 
Type Parameters
- T
 - type of the item.
 
Return Value
IAsyncEnumerableTthe same object reference as 
queryable.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IQueryableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
Exceptions
Remarks
See Also