12 references to ByteValue
System.Data.Common (12)
System\Data\SQLTypes\SQLBoolean.cs (4)
460
if (
ByteValue
< value.
ByteValue
) return -1;
461
if (
ByteValue
> value.
ByteValue
) return 1;
System\Data\SQLTypes\SQLByte.cs (1)
180
return x.IsNull ? Null : new SqlByte(x.
ByteValue
);
System\Data\SQLTypes\SQLDecimal.cs (1)
1743
return x.IsNull ? Null : new SqlDecimal(x.
ByteValue
);
System\Data\SQLTypes\SQLDouble.cs (1)
162
return x.IsNull ? Null : new SqlDouble(x.
ByteValue
);
System\Data\SQLTypes\SQLInt16.cs (1)
188
return x.IsNull ? Null : new SqlInt16(x.
ByteValue
);
System\Data\SQLTypes\SQLInt32.cs (1)
191
return x.IsNull ? Null : new SqlInt32(x.
ByteValue
);
System\Data\SQLTypes\SQLInt64.cs (1)
240
return x.IsNull ? Null : new SqlInt64(x.
ByteValue
);
System\Data\SQLTypes\SQLMoney.cs (1)
313
return x.IsNull ? Null : new SqlMoney(x.
ByteValue
);
System\Data\SQLTypes\SQLSingle.cs (1)
165
return x.IsNull ? Null : new SqlSingle(x.
ByteValue
);