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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax [ObsoleteAttribute("JavaScriptMode is ignored by server versions 4.4.0 and newer.")]
public Nullable<bool> JavaScriptMode { get; set; }
<ObsoleteAttribute("JavaScriptMode is ignored by server versions 4.4.0 and newer.")>
Public Property JavaScriptMode As Nullable(Of Boolean)
Get
Set
[<ObsoleteAttribute("JavaScriptMode is ignored by server versions 4.4.0 and newer.")>]
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