14 references to Value
System.Data.Common (14)
System\Data\Common\SQLConvert.cs (1)
675
return XmlConvert.ToString(((SqlInt16)value).
Value
);
System\Data\SQLTypes\SQLBoolean.cs (1)
244
return x.IsNull ? Null : new SqlBoolean(x.
Value
!= 0);
System\Data\SQLTypes\SQLByte.cs (3)
198
if (x.
Value
> byte.MaxValue || x.
Value
< byte.MinValue)
201
return x.IsNull ? Null : new SqlByte((byte)(x.
Value
));
System\Data\SQLTypes\SQLDecimal.cs (1)
1755
return x.IsNull ? Null : new SqlDecimal(x.
Value
);
System\Data\SQLTypes\SQLDouble.cs (1)
174
return x.IsNull ? Null : new SqlDouble(x.
Value
);
System\Data\SQLTypes\SQLInt16.cs (2)
68
return x.
Value
;
487
public override int GetHashCode() => IsNull ? 0 :
Value
.GetHashCode();
System\Data\SQLTypes\SQLInt32.cs (1)
203
return x.IsNull ? Null : new SqlInt32(x.
Value
);
System\Data\SQLTypes\SQLInt64.cs (1)
252
return x.IsNull ? Null : new SqlInt64(x.
Value
);
System\Data\SQLTypes\SQLMoney.cs (1)
325
return x.IsNull ? Null : new SqlMoney(x.
Value
);
System\Data\SQLTypes\SQLSingle.cs (1)
179
return x.IsNull ? Null : new SqlSingle(x.
Value
);
System\Data\SQLTypes\SQLString.cs (1)
472
return x.IsNull ? Null : new SqlString((x.
Value
).ToString((IFormatProvider)null!));