MapReduceOperationBaseJavaScriptMode Property |
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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public Nullable<bool> JavaScriptMode { get; set; }
Public Property JavaScriptMode As Nullable(Of Boolean)
Get
Set
member JavaScriptMode : Nullable<bool> with get, set
Property Value
Type:
NullableBooleanRemarks
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