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