2 overrides of GetExecutionPlan
System.Data.Entity (2)
System\Data\Objects\ELinq\ELinqQueryState.cs (1)
92internal override ObjectQueryExecutionPlan GetExecutionPlan(MergeOption? forMergeOption)
System\Data\Objects\Internal\EntitySqlQueryState.cs (1)
138internal 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)
256return this._state.GetExecutionPlan(null).ToTraceString();
System\Data\Objects\ObjectQuery_TResultType.cs (1)
172ObjectQueryExecutionPlan execPlan = this.QueryState.GetExecutionPlan(forMergeOption);