operator & method

Expression operator &(
  1. dynamic other
)

Database AND operator.

Implementation

Expression operator &(dynamic other) {
  assert(other is Expression);
  return Expression('($this AND $other)');
}