Execution plan mode for a Linq-to-SQL Profiler session. None = no execution plan, Estimated = SQL Server's estimated execution plan will be extracted, Actual = the actual SQL Server execution plan will be extracted.
Namespace:
Huagati.LinqToSQL.ProfilerAssembly: HuagatiL2SProfiler (in HuagatiL2SProfiler.dll) Version: 1.15.3506.21033
Syntax
| C# |
|---|
public enum ExecutionPlanMode |
| Visual Basic (Declaration) |
|---|
Public Enumeration ExecutionPlanMode |
| Visual C++ |
|---|
public enum class ExecutionPlanMode |
Members
| Member name | Description | |
|---|---|---|
| None |
No execution plan will be extracted
| |
| Estimated |
An estimated execution plan will be extracted. This is a less costly option than actual but the estimated execution plan is not always the plan used when the query is executed.
| |
| Actual |
The actual execution plan for the query will be extracted. This is a more costly option in terms of database-side overhead.
|