35 writes to Where
System.Data.Linq (35)
SqlClient\Common\SqlVisitor.cs (1)
439
select.
Where
= this.VisitExpression(select.Where);
SqlClient\Query\QueryConverter.cs (18)
509
select.
Where
= condition;
532
select.
Where
= pred;
584
select.
Where
= sql.AndAccumulate(select.Where,
632
select.
Where
= this.VisitExpression(predicate.Body);
1081
final.
Where
= sql.Between(
1089
final.
Where
= sql.Binary(SqlNodeType.GT, rowNumberRef, skipExp);
1131
eqsel.
Where
= sql.Binary(SqlNodeType.EQ2V, aref, dupRef);
1135
final.
Where
= sql.Unary(SqlNodeType.Not, ss, this.dominatingExpression);
1443
result.
Where
= any;
1467
result.
Where
= sql.Unary(SqlNodeType.Not, any);
1577
selElem.
Where
= sql.Binary(SqlNodeType.EQ2V, keyExpr, keyDup);
1691
sel.
Where
= where;
1736
sel.
Where
= isCount ? exp : null;
1832
sel.
Where
= cond;
1840
sel.
Where
= sql.Unary(SqlNodeType.Not2V, cond, this.dominatingExpression);
2375
select.
Where
= this.VisitExpression(lambda.Body);
2463
result.
Where
= pred;
2619
select.
Where
= sql.AndAccumulate(
SqlClient\Query\SqlBinder.cs (5)
1159
select.
Where
= this.VisitExpression(select.Where);
1182
select.
Where
= null;
1376
ss.Select.
Where
= null;
1586
sel.
Where
= sql.AndAccumulate(sel.Where, discriminatorPredicate);
1599
sel.
Where
= sql.AndAccumulate(sel.Where, elseFilter);
SqlClient\Query\SqlBooleanizer.cs (1)
25
select.
Where
= bin.Left;
SqlClient\Query\SqlBooleanMismatchVisitor.cs (1)
26
select.
Where
= this.VisitPredicate(select.Where);
SqlClient\Query\SqlDeflator.cs (2)
168
select.
Where
= this.VisitExpression(select.Where);
391
select.
Where
= this.VisitExpression(select.Where);
SqlClient\Query\SqlDuplicator.cs (1)
239
n.
Where
= where;
SqlClient\Query\SqlLiftWhereClauses.cs (1)
57
select.
Where
= this.current.Where;
SqlClient\Query\SqlOuterApplyReducer.cs (1)
373
select.
Where
= null;
SqlClient\Query\SqlReorderer.cs (1)
162
select.
Where
= this.VisitExpression(select.Where);
SqlClient\Query\SqlResolver.cs (1)
93
select.
Where
= this.VisitExpression(select.Where);
SqlClient\Query\Translator.cs (2)
297
select.
Where
= sql.Binary(expr.NodeType, sql.DoNotVisitExpression(eLeft), aref);
305
select.
Where
= sql.Binary(expr.NodeType, sql.DoNotVisitExpression(eRight), aref);
40 references to Where
System.Data.Linq (40)
SqlClient\Common\SqlVisitor.cs (1)
439
select.Where = this.VisitExpression(select.
Where
);
SqlClient\Query\ContainsRowNumberChecker.cs (1)
69
this.Visit(select.
Where
);
SqlClient\Query\QueryConverter.cs (3)
260
sel.
Where
!= null ||
584
select.Where = sql.AndAccumulate(select.
Where
,
2621
select.
Where
SqlClient\Query\SqlBinder.cs (7)
1159
select.Where = this.VisitExpression(select.
Where
);
1181
if (select.
Where
!= null && select.
Where
.NodeType == SqlNodeType.Value && (bool)((SqlValue)select.
Where
).Value) {
1375
SqlExpression where = ss.Select.
Where
;
1586
sel.Where = sql.AndAccumulate(sel.
Where
, discriminatorPredicate);
1599
sel.Where = sql.AndAccumulate(sel.
Where
, elseFilter);
SqlClient\Query\SqlBooleanizer.cs (3)
20
if (select.
Where
!= null && select.
Where
.NodeType == SqlNodeType.Coalesce) {
21
SqlBinary bin = (SqlBinary)select.
Where
;
SqlClient\Query\SqlBooleanMismatchVisitor.cs (1)
26
select.Where = this.VisitPredicate(select.
Where
);
SqlClient\Query\SqlDeflator.cs (7)
168
select.Where = this.VisitExpression(select.
Where
);
233
if (select.
Where
!= null) {
234
this.CheckJoinCondition(select.
Where
);
345
select.
Where
!= null)
377
sel.
Where
== null &&
391
select.Where = this.VisitExpression(select.
Where
);
466
select.
Where
!= null)
SqlClient\Query\SqlDuplicator.cs (1)
224
SqlExpression where = (SqlExpression)this.Visit(select.
Where
);
SqlClient\Query\SqlFormatter.cs (6)
809
if (ss.
Where
!= null) {
812
this.Visit(ss.
Where
);
978
if (sd.Select.
Where
!= null) {
980
this.Visit(sd.Select.
Where
);
1071
if (su.Select.
Where
!= null) {
1074
this.Visit(su.Select.
Where
);
SqlClient\Query\SqlLiftWhereClauses.cs (1)
40
this.current = new Scope(select.
Where
, this.current);
SqlClient\Query\SqlOuterApplyReducer.cs (7)
160
select.
Where
== null &&
362
if (this.canLiftAll && select.
Where
!= null) {
363
bool referencesAliases = this.aliases.ReferencesAny(select.
Where
);
366
this.liftedExpressions.Add(select.
Where
);
370
this.lifted = new SqlBinary(SqlNodeType.And, this.lifted.ClrType, this.lifted.SqlType, this.lifted, select.
Where
);
372
this.lifted = select.
Where
;
424
this.ReferenceColumns(select.
Where
);
SqlClient\Query\SqlReorderer.cs (1)
162
select.Where = this.VisitExpression(select.
Where
);
SqlClient\Query\SqlResolver.cs (1)
93
select.Where = this.VisitExpression(select.
Where
);