Table of Contents

Class AggregateSortByCountResult<TId>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Result type for the aggregate $sortByCount stage.

public sealed class AggregateSortByCountResult<TId>

Type Parameters

TId

The type of the identifier.

Inheritance
AggregateSortByCountResult<TId>
Inherited Members

Constructors

AggregateSortByCountResult(TId, long)

Initializes a new instance of the AggregateCountResult class.

public AggregateSortByCountResult(TId id, long count)

Parameters

id TId

The identifier.

count long

The count.

Properties

Count

Gets the count.

[BsonElement("count")]
public long Count { get; }

Property Value

long

The count.

Id

Gets the identifier.

[BsonElement("_id")]
public TId Id { get; }

Property Value

TId

The identifier.