joinOn method
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;
}
Adds the condition with which to perform joins.
Find joinOn(Expression exp) {
if (_curJoin == null) throw Exception('No joins in the join stack!');
_curJoin.joinOn(exp);
return this;
}