public sealed class Aggregation : IMessage<AggregationQuery.Types.Aggregation>, IEquatable<AggregationQuery.Types.Aggregation>, IDeepCloneable<AggregationQuery.Types.Aggregation>, IBufferMessage, IMessageReference documentation and code samples for the Google Cloud Datastore v1 API class AggregationQuery.Types.Aggregation.
Defines a aggregation that produces a single result.
Implements
IMessage<AggregationQuery.Types.Aggregation>, IEquatable<AggregationQuery.Types.Aggregation>, IDeepCloneable<AggregationQuery.Types.Aggregation>, IBufferMessage, IMessageNamespace
Google.Cloud.Datastore.V1Assembly
Google.Cloud.Datastore.V1.dll
Constructors
Aggregation()
public Aggregation()Aggregation(AggregationQuery.Types.Aggregation)
public Aggregation(AggregationQuery.Types.Aggregation other)| Parameter | |
|---|---|
| Name | Description | 
other | 
        AggregationQuery.Types.Aggregation | 
      
Properties
Alias
public string Alias { get; set; }Optional. Optional name of the property to store the result of the aggregation.
If not provided, Datastore will pick a default name following the format
property_<incremental_id++>. For example:
AGGREGATE
COUNT_UP_TO(1) AS count_up_to_1,
COUNT_UP_TO(2),
COUNT_UP_TO(3) AS count_up_to_3,
COUNT_UP_TO(4)
OVER (
...
);
becomes:
AGGREGATE
COUNT_UP_TO(1) AS count_up_to_1,
COUNT_UP_TO(2) AS property_1,
COUNT_UP_TO(3) AS count_up_to_3,
COUNT_UP_TO(4) AS property_2
OVER (
...
);
Requires:
- Must be unique across all aggregation aliases.
 - Conform to [entity property name][google.datastore.v1.Entity.properties] limitations.
 
| Property Value | |
|---|---|
| Type | Description | 
String | 
        |
Count
public AggregationQuery.Types.Aggregation.Types.Count Count { get; set; }Count aggregator.
| Property Value | |
|---|---|
| Type | Description | 
AggregationQuery.Types.Aggregation.Types.Count | 
        |
OperatorCase
public AggregationQuery.Types.Aggregation.OperatorOneofCase OperatorCase { get; }| Property Value | |
|---|---|
| Type | Description | 
AggregationQuery.Types.Aggregation.OperatorOneofCase | 
        |