Class AggregateBucketAutoResultId<TValue>
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
TValueThe minimum.
max
TValueThe 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