From method

SelectStatement From(
  1. Queryable table
)
use it once, if used multiple times, the last one will override

Implementation

SelectStatement From(Queryable table) {
  this._targetTable = table;
  return this;
}