selects method
Adds multiple SELECT fields to the query.
select
List of SELECT fields to add.
Returns this
to enable method chaining.
Example:
query.selects([QSelect('name'), QSelect('email'), QSelectAll()]); // Adds multiple SELECT fields
Implementation
Sqler selects(List<QSelectField> select) {
_select.addAll(select);
return this;
}