join method

  1. @override
QueryBuilderInterface<T> join(
  1. String table,
  2. String first,
  3. String operator,
  4. String second, [
  5. String type = 'INNER',
])
override

INNER JOIN

Implementation

@override
QueryBuilderInterface<T> join(
  String table,
  String first,
  String operator,
  String second, [
  String type = 'INNER',
]) {
  _joins.add({
    'type': type,
    'table': table,
    'first': first,
    'operator': operator,
    'second': second,
  });
  return this;
}