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.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
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