14 references to Value
System.Data.Common (14)
System\Data\Common\SQLConvert.cs (1)
679return XmlConvert.ToString(((SqlInt64)value).Value);
System\Data\SQLTypes\SQLBoolean.cs (1)
256return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
System\Data\SQLTypes\SQLByte.cs (3)
222if (x.Value > byte.MaxValue || x.Value < byte.MinValue) 225return x.IsNull ? Null : new SqlByte((byte)(x.Value));
System\Data\SQLTypes\SQLDecimal.cs (1)
1767return x.IsNull ? Null : new SqlDecimal(x.Value);
System\Data\SQLTypes\SQLDouble.cs (1)
186return x.IsNull ? Null : new SqlDouble(x.Value);
System\Data\SQLTypes\SQLInt16.cs (1)
218long value = x.Value;
System\Data\SQLTypes\SQLInt32.cs (1)
214long value = x.Value;
System\Data\SQLTypes\SQLInt64.cs (2)
70return x.Value; 561public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System\Data\SQLTypes\SQLMoney.cs (1)
337return x.IsNull ? Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
193return x.IsNull ? Null : new SqlSingle(x.Value);
System\Data\SQLTypes\SQLString.cs (1)
484return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null!));