Class AggregationResult
The result of a single bucket from a Datastore aggregation query. The keys of aggregate_properties
are the
same for all results in an aggregation query, unlike entity queries which can have different fields present for
each result.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class AggregationResult : IDirectResponseSchema
Properties
AggregateProperties
The result of the aggregation functions, ex: COUNT(*) AS total_entities
. The key is the alias assigned to
the aggregation function on input and the size of this map equals the number of aggregation functions in the
query.
Declaration
[JsonProperty("aggregateProperties")]
public virtual IDictionary<string, Value> AggregateProperties { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, Value> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |