3 writes to HasValue
System.Data.Linq (3)
SqlClient\Common\SqlNode.cs (1)
2124
this.
HasValue
= hasValue;
SqlClient\Common\SqlVisitor.cs (1)
539
sov.
HasValue
= this.VisitExpression(sov.HasValue);
SqlClient\Query\SqlNamer.cs (1)
203
sov.
HasValue
= this.VisitNamedExpression(sov.HasValue, "test");
10 references to HasValue
System.Data.Linq (10)
SqlClient\Common\SqlVisitor.cs (1)
539
sov.HasValue = this.VisitExpression(sov.
HasValue
);
SqlClient\Query\SqlBinder.cs (2)
550
new SqlUnary(SqlNodeType.OuterJoinedValue, ov.ClrType, ov.SqlType, ov.
HasValue
, ov.SourceExpression)
618
uo.Operand = ((SqlOptionalValue)exp).
HasValue
;
SqlClient\Query\SqlDuplicator.cs (1)
355
SqlExpression hasValue = this.VisitExpression(sov.
HasValue
);
SqlClient\Query\SqlExpander.cs (1)
294
hvals.Add(sov.
HasValue
);
SqlClient\Query\SqlFlattener.cs (1)
215
this.FlattenGroupByExpression(exprs, sop.
HasValue
);
SqlClient\Query\SqlFormatter.cs (1)
1403
this.Visit(sov.
HasValue
);
SqlClient\Query\SqlNamer.cs (1)
203
sov.HasValue = this.VisitNamedExpression(sov.
HasValue
, "test");
SqlClient\Reader\ObjectReaderCompiler.cs (2)
836
System.Diagnostics.Debug.Assert(opt.
HasValue
.ClrType == typeof(int?));
841
Type actualType = this.Generate(opt.
HasValue
);