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