14 references to Value
System.Data.Common (14)
System\Data\Common\SQLConvert.cs (1)
683return XmlConvert.ToString(((SqlSingle)value).Value);
System\Data\SQLTypes\SQLBoolean.cs (1)
268return x.IsNull ? Null : new SqlBoolean(x.Value != 0.0);
System\Data\SQLTypes\SQLByte.cs (3)
234if (x.Value > byte.MaxValue || x.Value < byte.MinValue) 237return x.IsNull ? Null : new SqlByte((byte)(x.Value));
System\Data\SQLTypes\SQLDecimal.cs (1)
1782return x.IsNull ? SqlDecimal.Null : new SqlDecimal(x.Value);
System\Data\SQLTypes\SQLDouble.cs (1)
192return x.IsNull ? Null : new SqlDouble(x.Value);
System\Data\SQLTypes\SQLInt16.cs (1)
231float value = x.Value;
System\Data\SQLTypes\SQLInt32.cs (1)
227float value = x.Value;
System\Data\SQLTypes\SQLInt64.cs (1)
269float value = x.Value;
System\Data\SQLTypes\SQLMoney.cs (1)
346return x.IsNull ? Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (2)
76return x.Value; 412public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System\Data\SQLTypes\SQLString.cs (1)
490return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null!));