12 references to Value
System.Data.Common (12)
System\Data\Common\SQLConvert.cs (1)
661return XmlConvert.ToString(((SqlByte)value).Value);
System\Data\SQLTypes\SQLBoolean.cs (1)
238return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
System\Data\SQLTypes\SQLByte.cs (2)
69return x.Value; 486public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System\Data\SQLTypes\SQLDecimal.cs (1)
1749return x.IsNull ? Null : new SqlDecimal(x.Value);
System\Data\SQLTypes\SQLDouble.cs (1)
168return x.IsNull ? Null : new SqlDouble(x.Value);
System\Data\SQLTypes\SQLInt16.cs (1)
194return x.IsNull ? Null : new SqlInt16(x.Value);
System\Data\SQLTypes\SQLInt32.cs (1)
197return x.IsNull ? Null : new SqlInt32(x.Value);
System\Data\SQLTypes\SQLInt64.cs (1)
246return x.IsNull ? Null : new SqlInt64(x.Value);
System\Data\SQLTypes\SQLMoney.cs (1)
319return x.IsNull ? Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
172return x.IsNull ? Null : new SqlSingle(x.Value);
System\Data\SQLTypes\SQLString.cs (1)
466return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null!));