 | IViewResultTKey, TValueRows Property |
The results of the query as a IAsyncEnumerable.
Namespace:
Couchbase.Views
Assembly:
Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
SyntaxIAsyncEnumerable<IViewRow<TKey, TValue>> Rows { get; }
Property Value
Type:
IAsyncEnumerableIViewRowTKey,
TValue
Remarks
In most cases, the rows may be enumerated only once. If it's necessary to enumerate more than
once, use ToListAsync``1(IAsyncEnumerableUMP, CancellationToken) to convert to a list.
ToListAsync can also be used to enumerate with a synchronous foreach loop in C# 7.
See Also