2 overrides of GetExecutionPlan
System.Data.Entity (2)
System\Data\Objects\ELinq\ELinqQueryState.cs (1)
92
internal override ObjectQueryExecutionPlan
GetExecutionPlan
(MergeOption? forMergeOption)
System\Data\Objects\Internal\EntitySqlQueryState.cs (1)
138
internal override ObjectQueryExecutionPlan
GetExecutionPlan
(MergeOption? forMergeOption)
3 references to GetExecutionPlan
System.Data.Entity (3)
System\Data\Objects\Internal\ObjectQueryState.cs (1)
175
/// <see cref="
GetExecutionPlan
(MergeOption?)"/> if no option is explicitly specified - for example during foreach-style enumeration.
System\Data\Objects\ObjectQuery.cs (1)
256
return this._state.
GetExecutionPlan
(null).ToTraceString();
System\Data\Objects\ObjectQuery_TResultType.cs (1)
172
ObjectQueryExecutionPlan execPlan = this.QueryState.
GetExecutionPlan
(forMergeOption);