select method

Query<T> select(
  1. List<String> items
)

Implementation

Query<T> select(List<String> items) {
  _update = null;
  _insert = null;
  _delete = null;
  _select = Select(items: items);

  return this;
}