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