Firestore API - Class AggregateQuerySnapshot (3.2.0)

public sealed class AggregateQuerySnapshot : IEquatable<AggregateQuerySnapshot>

Reference documentation and code samples for the Firestore API class AggregateQuerySnapshot.

An immutable snapshot of aggregate query results.

Inheritance

object > AggregateQuerySnapshot

Namespace

GoogleCloudFirestore

Assembly

Google.Cloud.Firestore.dll

Properties

Count

public long? Count { get; }

Number of documents that matches the query. May be null when count aggregation is not applied on the Query. Note that when the query contains a limit, the count is restricted by that limit.

Property Value
TypeDescription
long

Query

public AggregateQuery Query { get; }

The query producing this snapshot.

Property Value
TypeDescription
AggregateQuery

ReadTime

public Timestamp ReadTime { get; }

The time at which the snapshot was read.

Property Value
TypeDescription
Timestamp

Methods

GetHashCode()

public override int GetHashCode()
Returns
TypeDescription
int
Overrides