Table of Contents

Class AggregateBucketResult<TValue>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

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 TValue

The inclusive lower boundary of the bucket.

count long

The 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.