| 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.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public 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