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