fromRaw method

  1. @override
QueryBuilderInterface<T> fromRaw(
  1. String sql, [
  2. List bindings = const []
])
override

Set raw SQL as the FROM clause

Implementation

@override
QueryBuilderInterface<T> fromRaw(String sql, [List bindings = const []]) {
  _table = sql;
  _fromBindings.addAll(bindings);
  return this;
}