Click or drag to resize

ExplainVerbosity Enumeration

The verbosity of an explanation.

Namespace:  MongoDB.Driver.Core.Operations
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public enum ExplainVerbosity
Members
  Member nameValueDescription
QueryPlanner0 Runs the query planner and chooses the winning plan, but does not actually execute it.
ExecutionStats1 Runs the query optimizer, and then runs the winning plan to completion. In addition to the planner information, this makes execution stats available.
AllPlansExecution2 Runs the query optimizer and chooses the winning plan, but then runs all generated plans to completion. This makes execution stats available for all of the query plans.
See Also