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