query method

Query<T> query(
  1. String statement
)

Implementation

Query<T> query(String statement) {
  return Query(
      statement.replaceAll('[table]', tableInfo.tableName), ctx, this);
}