operator & method

Expression operator &(
  1. Expression other
)

Database AND operator.

Implementation

Expression operator &(Expression other) {
  return _AndExpression(this, other);
}