Click or drag to resize

MongoCollectionBaseTDocumentMapReduceTResult Method (BsonJavaScript, BsonJavaScript, MapReduceOptionsTDocument, TResult, CancellationToken)

Executes a map-reduce command.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public virtual IAsyncCursor<TResult> MapReduce<TResult>(
	BsonJavaScript map,
	BsonJavaScript reduce,
	MapReduceOptions<TDocument, TResult> options = null,
	CancellationToken cancellationToken = null
)

Parameters

map
Type: MongoDB.BsonBsonJavaScript
The map function.
reduce
Type: MongoDB.BsonBsonJavaScript
The reduce function.
options (Optional)
Type: MongoDB.DriverMapReduceOptionsTDocument, TResult
The options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Type Parameters

TResult
The type of the result.

Return Value

Type: IAsyncCursorTResult
A cursor.

Implements

IMongoCollectionTDocumentMapReduceTResult(BsonJavaScript, BsonJavaScript, MapReduceOptionsTDocument, TResult, CancellationToken)
See Also