27 references to Value
System.Data.Common (27)
System\Data\Common\SQLConvert.cs (1)
685return ((SqlString)value).Value;
System\Data\Common\SQLTypes\SQLStringStorage.cs (3)
110return _table.Compare(valueNo1.Value, valueNo2.Value); 141return ((value.IsNull) ? 0 : value.Value.Length);
System\Data\DataColumn.cs (1)
1701if (!DataStorage.IsObjectNull(value) && ((SqlString)value).Value.Length > MaxLength)
System\Data\Filter\BinaryNode.cs (1)
1571string tempStr = vLeft is SqlString sqlString ? sqlString.Value : (string)vLeft;
System\Data\Filter\FunctionNode.cs (5)
369argumentValues[0] = ((SqlString)argumentValues[0]).Value; 372argumentValues[1] = ((SqlString)argumentValues[1]).Value; 415argumentValues[0] = ((SqlString)argumentValues[0]).Value; 447argumentValues[0] = ((SqlString)argumentValues[0]).Value; 472argumentValues[0] = ((SqlString)argumentValues[0]).Value;
System\Data\ProviderBase\SchemaMapping.cs (1)
324xml = x.Value;
System\Data\SQLTypes\SQLBoolean.cs (1)
288return x.IsNull ? Null : SqlBoolean.Parse(x.Value);
System\Data\SQLTypes\SQLByte.cs (1)
262return x.IsNull ? Null : new SqlByte(byte.Parse(x.Value, null));
System\Data\SQLTypes\SQLChars.cs (1)
81public SqlChars(SqlString value) : this(value.IsNull ? null : value.Value.ToCharArray())
System\Data\SQLTypes\SQLDateTime.cs (1)
474return x.IsNull ? SqlDateTime.Null : SqlDateTime.Parse(x.Value);
System\Data\SQLTypes\SQLDecimal.cs (1)
1795return x.IsNull ? Null : SqlDecimal.Parse(x.Value);
System\Data\SQLTypes\SQLDouble.cs (1)
216return Parse(x.Value);
System\Data\SQLTypes\SQLGuid.cs (1)
150return x.IsNull ? Null : new SqlGuid(x.Value);
System\Data\SQLTypes\SQLInt16.cs (1)
266return x.IsNull ? Null : new SqlInt16(short.Parse(x.Value, null));
System\Data\SQLTypes\SQLInt32.cs (1)
275return x.IsNull ? SqlInt32.Null : new SqlInt32(int.Parse(x.Value, null));
System\Data\SQLTypes\SQLInt64.cs (1)
334return x.IsNull ? Null : new SqlInt64(long.Parse(x.Value, null));
System\Data\SQLTypes\SQLMoney.cs (1)
365return x.IsNull ? Null : new SqlMoney(decimal.Parse(x.Value, NumberStyles.Currency, null));
System\Data\SQLTypes\SQLSingle.cs (1)
225return Parse(x.Value);
System\Data\SQLTypes\SQLString.cs (3)
46/// Represents a null value that can be assigned to the <see cref='System.Data.SqlTypes.SqlString.Value'/> property of an instance of 217/// Gets whether the <see cref='System.Data.SqlTypes.SqlString.Value'/> of the <see cref='System.Data.SqlTypes.SqlString'/> is <see cref='System.Data.SqlTypes.SqlString.Null'/>. 307return x.Value;