union method

LQB union(
  1. LQB queryBuilder
)

Implementation

LQB union(LQB queryBuilder) {
  if (queryBuilder == this) throw 'Cannot pass calling instance as union argument';
  this._union = queryBuilder;
  return this;
}