Fields method

SelectStatement Fields(
  1. List<Expr> exprs
)
if used multiple times the last one will override

Implementation

SelectStatement Fields(List<Expr> exprs) {
  this._selectFields = exprs;
  return this;
}