Class AggregateBucketResult<TValue>
Represents the result of the $bucket stage.
public class AggregateBucketResult<TValue>
Type Parameters
TValue
The type of the value.
- Inheritance
-
AggregateBucketResult<TValue>
- Inherited Members
Constructors
AggregateBucketResult(TValue, long)
Initializes a new instance of the AggregateBucketResult<TValue> class.
public AggregateBucketResult(TValue id, long count)
Parameters
id
TValueThe inclusive lower boundary of the bucket.
count
longThe count.
Properties
Count
Gets the count.
[BsonElement("count")]
public long Count { get; }
Property Value
- long
The count.
Id
Gets the inclusive lower boundary of the bucket.
[BsonId]
public TValue Id { get; }
Property Value
- TValue
The inclusive lower boundary of the bucket.