Table of Contents

Class AggregateBucketAutoResult<TValue>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Represents the result of the $bucketAuto stage.

public class AggregateBucketAutoResult<TValue>

Type Parameters

TValue

The type of the value.

Inheritance
AggregateBucketAutoResult<TValue>
Inherited Members

Constructors

AggregateBucketAutoResult(AggregateBucketAutoResultId<TValue>, long)

Initializes a new instance of the AggregateBucketResult<TValue> class.

public AggregateBucketAutoResult(AggregateBucketAutoResultId<TValue> id, long count)

Parameters

id AggregateBucketAutoResultId<TValue>

The inclusive lower boundary of the bucket.

count long

The count.

AggregateBucketAutoResult(TValue, TValue, long)

Initializes a new instance of the AggregateBucketResult<TValue> class.

public AggregateBucketAutoResult(TValue min, TValue max, long count)

Parameters

min TValue

The minimum.

max TValue

The maximum.

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 AggregateBucketAutoResultId<TValue> Id { get; }

Property Value

AggregateBucketAutoResultId<TValue>

The inclusive lower boundary of the bucket.

Max

Gets the maximum.

public TValue Max { get; }

Property Value

TValue

Min

Gets the minimum.

public TValue Min { get; }

Property Value

TValue