13 references to InnerJoin
System.Data.Entity (13)
System\Data\Query\InternalTrees\Dump.cs (1)
913
case OpType.
InnerJoin
:
System\Data\Query\InternalTrees\NodeInfo.cs (3)
860
if (!(op.OpType == OpType.
InnerJoin
||
889
if (op.OpType == OpType.
InnerJoin
|| op.OpType == OpType.LeftOuterJoin)
893
if (op.OpType == OpType.
InnerJoin
)
System\Data\Query\InternalTrees\RelOps.cs (1)
261
private InnerJoinOp() : base(OpType.
InnerJoin
) { }
System\Data\Query\PlanCompiler\JoinGraph.cs (4)
432
PlanCompiler.Assert((joinOpType == OpType.LeftOuterJoin || joinOpType == OpType.
InnerJoin
),
696
case OpType.
InnerJoin
:
937
case OpType.
InnerJoin
:
2645
case OpType.
InnerJoin
:
System\Data\Query\PlanCompiler\PreProcessor.cs (1)
2186
if (op.OpType == OpType.
InnerJoin
|| op.OpType == OpType.LeftOuterJoin)
System\Data\Query\PlanCompiler\SubqueryTrackingVisitor.cs (1)
240
PlanCompiler.Assert(n.Op.OpType == OpType.
InnerJoin
||
System\Data\Query\PlanCompiler\TransformationRules.cs (2)
1860
if (joinOp.OpType == OpType.CrossJoin || joinOp.OpType == OpType.
InnerJoin
)
1892
PlanCompiler.Assert(joinOp.OpType == OpType.
InnerJoin
, "unexpected non-InnerJoin?");