fromRaw method
Set raw SQL as the FROM clause
Implementation
@override
QueryBuilderInterface<T> fromRaw(String sql, [List bindings = const []]) {
_table = sql;
_fromBindings.addAll(bindings);
return this;
}
Set raw SQL as the FROM clause
@override
QueryBuilderInterface<T> fromRaw(String sql, [List bindings = const []]) {
_table = sql;
_fromBindings.addAll(bindings);
return this;
}