Table of Contents

Class AggregateBucketAutoResultId<TValue>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Represents the _id value in the result of a $bucketAuto stage.

public class AggregateBucketAutoResultId<TValue>

Type Parameters

TValue

The type of the values.

Inheritance
AggregateBucketAutoResultId<TValue>
Inherited Members

Constructors

AggregateBucketAutoResultId(TValue, TValue)

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

public AggregateBucketAutoResultId(TValue min, TValue max)

Parameters

min TValue

The minimum.

max TValue

The maximum.

Properties

Max

Gets the max value.

[BsonElement("max")]
public TValue Max { get; }

Property Value

TValue

Min

Gets the min value.

[BsonElement("min")]
public TValue Min { get; }

Property Value

TValue