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