public sealed class AggregationQueryResultsReference documentation and code samples for the Google Cloud Datastore v1 API class AggregationQueryResults.
Represents the result of an AggregationQuery.
Namespace
Google.Cloud.Datastore.V1Assembly
Google.Cloud.Datastore.V1.dll
Properties
this[string]
public Value this[string alias] { get; }Returns the result of the aggregation function that is assigned to the given alias. Will be null if was not specified in the original query.
| Parameter | |
|---|---|
| Name | Description |
alias |
stringThe alias of the aggregation function that was provided in the aggregation query.
If not provided, Datastore will pick a default name following the format
|
| Property Value | |
|---|---|
| Type | Description |
Value |
The result of the aggregation function corresponding to the given alias. |
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 |
|
ReadTime
public Timestamp ReadTime { get; }The time at which the snapshot was read. This will be null if the query was only planned, and not executed.
| Property Value | |
|---|---|
| Type | Description |
Timestamp |
|