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