select method

Avanda select(
  1. List columns
)

Implementation

Avanda select(List columns) {
  if (queryTree.n == null) {
    throw 'Specify service to select from';
  }
  queryTree.f = "get";
  fetch(columns);
  return this;
}