Click or drag to resize

MongoCollectionFindAndModify Method (IMongoQuery, IMongoSortBy, IMongoUpdate)

Note: This API is now obsolete.

Finds one matching document using the query and sortBy parameters and applies the specified update to it.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
[ObsoleteAttribute("Use the overload of FindAndModify that has a FindAndModifyArgs parameter instead.")]
public virtual FindAndModifyResult FindAndModify(
	IMongoQuery query,
	IMongoSortBy sortBy,
	IMongoUpdate update
)

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.
update
Type: MongoDB.DriverIMongoUpdate
The update to apply to the matching document.

Return Value

Type: FindAndModifyResult
A FindAndModifyResult.
See Also