Class AggregateSortByCountResult<TId>
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
TIdThe identifier.
count
longThe 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.