 | 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.3+0a73c45f0c78941900e328c6c6b819597b665e00
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