18 references to Value
System.Data (18)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3543
setters.SetInt64( sink, ordinal, value.
Value
);
fx\src\data\System\Data\Common\SQLConvert.cs (1)
735
return XmlConvert.ToString(((SqlInt64)value).
Value
);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
449
comVal = ((SqlInt64)sqlVal).
Value
;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
10015
WriteLong(((SqlInt64)value).
Value
, stateObj);
10975
return SerializeLong(((SqlInt64)value).
Value
, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
321
return x.IsNull ? Null : new SqlBoolean(x.
Value
!= 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
286
if (x.
Value
> (long)Byte.MaxValue || x.
Value
< (long)Byte.MinValue)
289
return x.IsNull ? Null : new SqlByte((byte)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1736
return x.IsNull ? Null : new SqlDecimal(x.
Value
);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
243
return x.IsNull ? Null : new SqlDouble((double)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
286
long value = x.
Value
;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
280
long value = x.
Value
;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (2)
103
return x.
Value
;
632
return IsNull ? 0 :
Value
.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
385
return x.IsNull ? Null : new SqlMoney(x.
Value
);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
249
return x.IsNull ? Null : new SqlSingle((float)(x.
Value
));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
543
return x.IsNull ? Null : new SqlString((x.
Value
).ToString((IFormatProvider)null));