23 references to Value
System.Data.Common (23)
System\Data\Common\SQLConvert.cs (1)
659return XmlConvert.ToString(((SqlBoolean)value).Value);
System\Data\SQLTypes\SQLBinary.cs (1)
367(this == other).Value;
System\Data\SQLTypes\SQLBoolean.cs (10)
55/// Gets whether the current <see cref='Value'/> is <see cref='SqlBoolean.Null'/>. 80/// Gets whether the current <see cref='Value'/> is <see cref='SqlBoolean.True'/>. 88/// Gets whether the current <see cref='Value'/> is <see cref='SqlBoolean.False'/>. 111return x.Value; 190return IsNull ? SQLResource.NullString : Value.ToString(); 474(this == other).Value; 477public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode(); 515/// <see cref='Value'/> property of an instance of the <see cref='SqlBoolean'/> class. 519/// Represents a false value that can be assigned to the <see cref='Value'/> property of an instance of 524/// Represents a null value that can be assigned to the <see cref='Value'/> property of an instance of
System\Data\SQLTypes\SQLByte.cs (1)
483(this == other).Value;
System\Data\SQLTypes\SQLDateTime.cs (1)
625(this == other).Value;
System\Data\SQLTypes\SQLDecimal.cs (1)
3309(this == other).Value;
System\Data\SQLTypes\SQLDouble.cs (1)
399(this == other).Value;
System\Data\SQLTypes\SQLInt16.cs (1)
484(this == other).Value;
System\Data\SQLTypes\SQLInt32.cs (1)
499(this == other).Value;
System\Data\SQLTypes\SQLInt64.cs (1)
558(this == other).Value;
System\Data\SQLTypes\SQLMoney.cs (1)
553(this == other).Value;
System\Data\SQLTypes\SQLSingle.cs (1)
409(this == other).Value;
System\Data\SQLTypes\SQLString.cs (2)
460return x.IsNull ? Null : new SqlString((x.Value).ToString()); 885(this == other).Value;