table static method

QueryBuilderInterface table(
  1. String table
)

Begins a new query against a table.

Implementation

static QueryBuilderInterface<dynamic> table(String table) {
  return _manager.table(table);
}