14 references to Value
System.Data.Common (14)
System\Data\Common\SQLConvert.cs (1)
677return XmlConvert.ToString(((SqlInt32)value).Value);
System\Data\SQLTypes\SQLBoolean.cs (1)
250return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
System\Data\SQLTypes\SQLByte.cs (3)
210if (x.Value > byte.MaxValue || x.Value < byte.MinValue) 213return x.IsNull ? Null : new SqlByte((byte)(x.Value));
System\Data\SQLTypes\SQLDecimal.cs (1)
1761return x.IsNull ? Null : new SqlDecimal(x.Value);
System\Data\SQLTypes\SQLDouble.cs (1)
180return x.IsNull ? Null : new SqlDouble(x.Value);
System\Data\SQLTypes\SQLInt16.cs (1)
205int value = x.Value;
System\Data\SQLTypes\SQLInt32.cs (2)
69return x.Value; 502public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System\Data\SQLTypes\SQLInt64.cs (1)
258return x.IsNull ? Null : new SqlInt64(x.Value);
System\Data\SQLTypes\SQLMoney.cs (1)
331return x.IsNull ? Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
186return x.IsNull ? Null : new SqlSingle(x.Value);
System\Data\SQLTypes\SQLString.cs (1)
478return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null!));