17 writes to From
System.Data.Linq (17)
SqlClient\Common\SqlNode.cs (1)
288
this.
From
= from;
SqlClient\Common\SqlVisitor.cs (1)
438
select.
From
= this.VisitSource(select.From);
SqlClient\Query\QueryConverter.cs (1)
2766
select.
From
= (SqlSource)base.Visit(select.From);
SqlClient\Query\SqlBinder.cs (7)
881
this.currentSelect.
From
= sql.MakeJoin(SqlJoinType.OuterApply, this.currentSelect.From, alias, null, sub.SourceExpression);
904
newSelect.
From
= new SqlJoin(SqlJoinType.CrossApply, alias, ralias, null, m.SourceExpression);
966
sel.
From
= new SqlJoin(SqlJoinType.CrossApply, sel.From, alias, null, ss.SourceExpression);
976
sel.
From
= new SqlJoin(SqlJoinType.CrossApply, sel.From, alias, null, ss.SourceExpression);
1103
this.currentSelect.
From
= new SqlAlias(simple);
1156
select.
From
= this.VisitSource(select.From);
1383
this.currentSelect.
From
= sql.MakeJoin(joinType, this.currentSelect.From, sa, where, ss.SourceExpression);
SqlClient\Query\SqlBooleanMismatchVisitor.cs (1)
25
select.
From
= this.VisitSource(select.From);
SqlClient\Query\SqlDeflator.cs (2)
169
select.
From
= this.VisitSource(select.From);
390
select.
From
= this.VisitSource(select.From);
SqlClient\Query\SqlMultiplexer.cs (1)
54
this.outerSelect.
From
= join;
SqlClient\Query\SqlReorderer.cs (1)
264
this.currentSelect.
From
= new SqlAlias(select);
SqlClient\Query\SqlResolver.cs (1)
88
select.
From
= (SqlSource)this.Visit(select.From);
SqlClient\Query\SqlRewriteScalarSubqueries.cs (1)
38
this.currentSelect.
From
= new SqlJoin(SqlJoinType.OuterApply, this.currentSelect.From, alias, null, ss.SourceExpression);
48 references to From
System.Data.Linq (48)
SqlClient\Common\SqlVisitor.cs (1)
438
select.From = this.VisitSource(select.
From
);
SqlClient\Query\QueryConverter.cs (3)
1646
(mce != null) && IsSequenceOperatorCall(mce, "Select") && select.
From
is SqlAlias) {
1651
alias = (SqlAlias)select.
From
;
2766
select.From = (SqlSource)base.Visit(select.
From
);
SqlClient\Query\SqlBinder.cs (9)
881
this.currentSelect.From = sql.MakeJoin(SqlJoinType.OuterApply, this.currentSelect.
From
, alias, null, sub.SourceExpression);
966
sel.From = new SqlJoin(SqlJoinType.CrossApply, sel.
From
, alias, null, ss.SourceExpression);
976
sel.From = new SqlJoin(SqlJoinType.CrossApply, sel.
From
, alias, null, ss.SourceExpression);
1102
SqlSelect simple = new SqlSelect(expr, this.currentSelect.
From
, expr.SourceExpression);
1156
select.From = this.VisitSource(select.
From
);
1379
if (joinType == SqlJoinType.Inner && this.IsOuterDependent(this.currentSelect.
From
, sa, where))
1383
this.currentSelect.From = sql.MakeJoin(joinType, this.currentSelect.
From
, sa, where, ss.SourceExpression);
1428
if (s != null && !isOuterDependent && s.
From
!= null)
1430
if (this.IsOuterDependent(false, s.
From
, consumed, out produced))
SqlClient\Query\SqlBooleanMismatchVisitor.cs (1)
25
select.From = this.VisitSource(select.
From
);
SqlClient\Query\SqlDeflator.cs (8)
169
select.From = this.VisitSource(select.
From
);
312
node = sel.
From
;
347
return this.HasTrivialSource(select.
From
) && this.HasTrivialProjection(select);
376
sel.
From
== null &&
390
select.From = this.VisitSource(select.
From
);
416
this.equalizer.BuildEqivalenceMap(select.
From
);
443
SqlSelect aselect = (SqlSelect)((SqlAlias)select.
From
).Node;
468
return this.HasTrivialSource(select.
From
) && this.HasTrivialProjection(select);
SqlClient\Query\SqlDuplicator.cs (1)
206
SqlSource from = this.VisitSource(select.
From
);
SqlClient\Query\SqlFormatter.cs (10)
763
if (ss.
From
!= null) {
766
if (this.IsSimpleCrossJoinList(ss.
From
)) {
767
this.VisitCrossJoinList(ss.
From
);
769
this.Visit(ss.
From
);
976
this.suppressedAliases.Add(sd.Select.
From
);
977
this.Visit(sd.Select.
From
);
982
this.suppressedAliases.Remove(sd.Select.
From
);
1059
this.suppressedAliases.Add(su.Select.
From
);
1060
this.Visit(su.Select.
From
);
1076
this.suppressedAliases.Remove(su.Select.
From
);
SqlClient\Query\SqlMultiplexer.cs (1)
53
SqlJoin join = new SqlJoin(SqlJoinType.OuterApply, this.outerSelect.
From
, alias, null, sms.SourceExpression);
SqlClient\Query\SqlOuterApplyReducer.cs (5)
164
return this.GetLeftOuterWithUnreferencedSingletonOnLeft(select.
From
);
188
this.GetSelectionsBeforeJoin(select.
From
, selections);
202
if (select.
From
!= null)
351
this.VisitSource(select.
From
);
468
this.VisitSource(select.
From
);
SqlClient\Query\SqlReorderer.cs (4)
146
this.Visit(select.
From
);
150
this.Visit(select.
From
);
235
List<SqlColumn> columns = SqlGatherColumnsProduced.GatherColumns(this.currentSelect.
From
);
263
SqlSelect select = new SqlSelect(new SqlNop(column.ClrType, column.SqlType, column.SourceExpression), this.currentSelect.
From
, this.currentSelect.SourceExpression);
SqlClient\Query\SqlResolver.cs (3)
88
select.From = (SqlSource)this.Visit(select.
From
);
91
this.CurrentScope = new Scope(select.
From
, this.CurrentScope.ContainingScope);
277
this.Visit(select.
From
);
SqlClient\Query\SqlRewriteScalarSubqueries.cs (1)
38
this.currentSelect.From = new SqlJoin(SqlJoinType.OuterApply, this.currentSelect.
From
, alias, null, ss.SourceExpression);
SqlClient\Query\SqlUnionizer.cs (1)
17
SqlUnion union = this.GetUnion(select.
From
);