Click or drag to resize
MongoCollectionFindAndRemove Method (IMongoQuery, IMongoSortBy)

Note: This API is now obsolete.

Finds one matching document using the query and sortBy parameters and removes it from this collection.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.4.1
Syntax
[ObsoleteAttribute("Use the overload of FindAndRemove that has a FindAndRemoveArgs parameter instead.")]
public virtual FindAndModifyResult FindAndRemove(
	IMongoQuery query,
	IMongoSortBy sortBy
)

Parameters

query
Type: MongoDB.DriverIMongoQuery
The query (usually a QueryDocument or constructed using the Query builder).
sortBy
Type: MongoDB.DriverIMongoSortBy
The sort order to select one of the matching documents.

Return Value

Type: FindAndModifyResult
A FindAndModifyResult.
See Also