from method

Sqler from(
  1. QField from
)

Adds a table or source to the FROM clause.

from The table or source to add. Returns this to enable method chaining.

Example:

query.from(QField('users')); // Adds users table to FROM clause

Implementation

Sqler from(QField from) {
  _from.add(from);
  return this;
}