9 writes to Left
System.Data.Linq (9)
SqlClient\Common\SqlNode.cs (1)
638this.Left = left;
SqlClient\Common\SqlVisitor.cs (1)
429join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlBinder.cs (1)
1112join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlBooleanMismatchVisitor.cs (1)
44join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlDeflator.cs (1)
182join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlLiftIndependentRowExpressions.cs (1)
86join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlLiftWhereClauses.cs (1)
83join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlOuterApplyReducer.cs (2)
131join.Left = leftLeftOuter.Left; 135leftLeftOuter.Left = leftLeftOuter.Right;
30 references to Left
System.Data.Linq (30)
SqlClient\Common\SqlVisitor.cs (1)
429join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlBinder.cs (3)
1112join.Left = this.VisitSource(join.Left); 1116this.currentSelect = this.GetSourceSelect(join.Left); 1413if (this.IsOuterDependent(isOuterDependent, join.Left, consumed, out produced))
SqlClient\Query\SqlBooleanMismatchVisitor.cs (1)
44join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlCrossApplyToCrossJoin.cs (1)
30 HashSet<SqlAlias> p = SqlGatherProducedAliases.Gather(join.Left);
SqlClient\Query\SqlDeflator.cs (3)
182join.Left = this.VisitSource(join.Left); 332return join.Left; 353return this.HasTrivialSource(join.Left) &&
SqlClient\Query\SqlDuplicator.cs (1)
173SqlSource left = this.VisitSource(join.Left);
SqlClient\Query\SqlFormatter.cs (3)
850this.IsSimpleCrossJoinList(join.Left) && 860this.VisitCrossJoinList(join.Left); 881this.Visit(join.Left);
SqlClient\Query\SqlLiftIndependentRowExpressions.cs (2)
86join.Left = this.VisitSource(join.Left); 95expressionSink.LeftProduction = SqlGatherProducedAliases.Gather(join.Left);
SqlClient\Query\SqlLiftWhereClauses.cs (1)
83join.Left = this.VisitSource(join.Left);
SqlClient\Query\SqlOuterApplyReducer.cs (7)
34HashSet<SqlAlias> leftProducedAliases = SqlGatherProducedAliases.Gather(join.Left); 81HashSet<SqlAlias> leftProducedAliases = SqlGatherProducedAliases.Gather(join.Left); 113SqlJoin leftLeftOuter = this.GetLeftOuterWithUnreferencedSingletonOnLeft(join.Left); 120this.GetSelectionsBeforeJoin(join.Left, liftedSelections); 131join.Left = leftLeftOuter.Left; 170if (!this.IsSingletonSelect(join.Left)) 172HashSet<SqlAlias> p = SqlGatherProducedAliases.Gather(join.Left);
SqlClient\Query\SqlReorderer.cs (1)
69this.Visit(join.Left);
SqlClient\Query\SqlResolver.cs (6)
141this.Visit(join.Left); 142Scope tmp = new Scope(join.Left, this.CurrentScope.ContainingScope); 151this.Visit(join.Left); 153this.CurrentScope = new Scope(null, new Scope(join.Right, new Scope(join.Left, this.CurrentScope.ContainingScope))); 216this.Visit(join.Left); 223this.Visit(join.Left);