Click or drag to resize

MapReduceOperationBaseJavaScriptMode Property

Note: This API is now obsolete.

Gets or sets a value indicating whether objects emitted by the map function remain as JavaScript objects.

Namespace:  MongoDB.Driver.Core.Operations
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
[ObsoleteAttribute("JavaScriptMode is ignored by server versions 4.4.0 and newer.")]
public Nullable<bool> JavaScriptMode { get; set; }

Property Value

Type: NullableBoolean
Remarks
Setting this value to true can result in faster execution, but requires more memory on the server, and if there are too many emitted objects the map-reduce operation may fail.
true if objects emitted by the map function remain as JavaScript objects; otherwise, false.
See Also