public sealed class DatastoreQueryResultsReference documentation and code samples for the Google Cloud Datastore v1 API class DatastoreQueryResults.
A complete set of query results, fetched and stored in memory. Results are fetched from a LazyDatastoreQuery or AsyncLazyDatastoreQuery until the query-specified limit or end cursor is reached, or no more results are available.
Namespace
Google.Cloud.Datastore.V1Assembly
Google.Cloud.Datastore.V1.dll
Properties
EndCursor
public ByteString EndCursor { get; }The cursor at the end of the results. This will only be null for "explain" queries, where the query has not actually been executed.
| Property Value | |
|---|---|
| Type | Description |
ByteString |
|
Entities
public IReadOnlyList<Entity> Entities { get; }The entities returned by the query.
| Property Value | |
|---|---|
| Type | Description |
IReadOnlyListEntity |
|
Metrics
public ExplainMetrics Metrics { get; }The information about planning and execution (if any) of the query. This will be null if no analysis was requested.
| Property Value | |
|---|---|
| Type | Description |
ExplainMetrics |
|
MoreResults
public QueryResultBatch.Types.MoreResultsType MoreResults { get; }The condition that caused the query to complete, indicating whether more results are available beyond the query limit or end cursor, or whether the data has been exhausted.
| Property Value | |
|---|---|
| Type | Description |
QueryResultBatchTypesMoreResultsType |
|