bitwiseOr method

Expression<BigInt> bitwiseOr(
  1. Expression<BigInt> other
)

Returns the bitwise-or operation between this and other.

Note that, just like BitwiseInt, this still operates on 64-bit integers in SQL. The BigInt type on the expression only tells drift that the result should be integerpreted as a big integer, which is primarily useful on the web where large values cannot be stored in an int.

Implementation

Expression<BigInt> bitwiseOr(Expression<BigInt> other) {
  return BaseInfixOperator(this, '|', other, precedence: Precedence.bitwise);
}