joinOn method

Find joinOn(
  1. Expression exp
)

Adds the condition with which to perform joins.

Implementation

Find joinOn(Expression exp) {
  if (_curJoin == null) throw Exception('No joins in the join stack!');

  _curJoin.joinOn(exp);
  return this;
}