12 references to ByteValue
System.Data (12)
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (4)
530
if (this.
ByteValue
< value.
ByteValue
) return -1;
531
if (this.
ByteValue
> value.
ByteValue
) return 1;
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
236
return x.IsNull ? Null : new SqlByte((byte)(x.
ByteValue
));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1704
return x.IsNull ? Null : new SqlDecimal((int)x.
ByteValue
);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
211
return x.IsNull ? Null : new SqlDouble((double)(x.
ByteValue
));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
250
return x.IsNull ? Null : new SqlInt16((short)(x.
ByteValue
));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
250
return x.IsNull ? Null : new SqlInt32((int)x.
ByteValue
);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
296
return x.IsNull ? Null : new SqlInt64((long)x.
ByteValue
);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
353
return x.IsNull ? Null : new SqlMoney((int)x.
ByteValue
);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
213
return x.IsNull ? Null : new SqlSingle(x.
ByteValue
);