Firebase.Firestore.AggregateQuery

A query that calculates aggregations over an underlying query.

Summary

Public attributes

Query => new Query(_proxy.query(), _firestore)
The query of aggregations that will be calculated.

Public functions

Equals(object obj)
override bool
Equals(AggregateQuery other)
bool
Compares this aggregate query with another for equality.
GetHashCode()
override int
GetSnapshotAsync(AggregateSource source)
Asynchronously executes the query.

Public attributes

Query

Query Query => new Query(_proxy.query(), _firestore)

The query of aggregations that will be calculated.

Public functions

Equals

override bool Equals(
  object obj
)

Equals

bool Equals(
  AggregateQuery other
)

Compares this aggregate query with another for equality.

Details
Parameters
other
The aggregate query to compare this one with.
Returns
true if this aggregate query is equal to other ; false otherwise.

GetHashCode

override int GetHashCode()

GetSnapshotAsync

Task< AggregateQuerySnapshot > GetSnapshotAsync(
  AggregateSource source
)

Asynchronously executes the query.

Details
Parameters
source
The source from which to acquire the aggregate results.
Returns
The results of the query.