Click or drag to resize

MongoCollectionBase<TDocument>.Count Method (FilterDefinition<TDocument>, CountOptions, CancellationToken)

Note: This API is now obsolete.

Counts the number of documents in the collection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
[ObsoleteAttribute("Use CountDocuments or EstimatedDocumentCount instead.")]
public virtual long Count(
	FilterDefinition<TDocument> filter,
	CountOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

filter
Type: MongoDB.Driver.FilterDefinition<TDocument>
The filter.
options (Optional)
Type: MongoDB.Driver.CountOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Int64
The number of documents in the collection.

Implements

IMongoCollection<TDocument>.Count(FilterDefinition<TDocument>, CountOptions, CancellationToken)
See Also