Click or drag to resize

IQueryResultT Interface

Interface for the results of a N1QL query.

Namespace:  Couchbase.Query
Assembly:  Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
Syntax
C#
public interface IQueryResult<out T> : IDisposable, 
	IAsyncEnumerable<T>

Type Parameters

T
Type of row returned by the N1QL query.

The IQueryResultT type exposes the following members.

Properties
  NameDescription
Public propertyErrors
Gets a list of 0 or more error objects; if an error occurred during processing of the request, it will be represented by an error object in this list.
Public propertyMetaData
Gets the meta data associated with the query result. May not be fully populated until after the rows are enumerated.
Public propertyRows
The results of the query as a IAsyncEnumerable.
Top
See Also