orderBy method

OrderBy orderBy (List<Ordering> orderingList)

Implementation

OrderBy orderBy(List<Ordering> orderingList) {
  var resultQuery = new OrderBy();
  resultQuery._options = this.options;
  resultQuery._options["orderBy"] = orderingList;
  return resultQuery;
}