Click or drag to resize

IAnalyticsResultTRows Property

The results of the query as a IAsyncEnumerable.

Namespace:  Couchbase.Analytics
Assembly:  Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
Syntax
C#
IAsyncEnumerable<T> Rows { get; }

Property Value

Type: IAsyncEnumerableT
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