22 references to Value
System.Data.Common (22)
System\Data\Common\SQLConvert.cs (1)
671return XmlConvert.ToString(((SqlDouble)value).Value);
System\Data\Common\SQLTypes\SQLByteStorage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLDecimalStorage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLDoubleStorage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLInt16Storage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLInt32Storage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLInt64Storage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLMoneyStorage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\Common\SQLTypes\SQLSingleStorage.cs (1)
97return Math.Sqrt(var.Value);
System\Data\SQLTypes\SQLBoolean.cs (1)
262return x.IsNull ? Null : new SqlBoolean(x.Value != 0.0);
System\Data\SQLTypes\SQLByte.cs (3)
246if (x.Value > byte.MaxValue || x.Value < byte.MinValue) 249return x.IsNull ? Null : new SqlByte((byte)(x.Value));
System\Data\SQLTypes\SQLDecimal.cs (1)
1788return x.IsNull ? SqlDecimal.Null : new SqlDecimal(x.Value);
System\Data\SQLTypes\SQLDouble.cs (2)
75return x.Value; 402public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System\Data\SQLTypes\SQLInt16.cs (1)
244double value = x.Value;
System\Data\SQLTypes\SQLInt32.cs (1)
240double value = x.Value;
System\Data\SQLTypes\SQLInt64.cs (1)
282double value = x.Value;
System\Data\SQLTypes\SQLMoney.cs (1)
352return x.IsNull ? Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
216return x.IsNull ? Null : new SqlSingle(x.Value);
System\Data\SQLTypes\SQLString.cs (1)
496return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null!));