whereAnd method

Sqler whereAnd(
  1. List<Condition> conditions
)

Adds multiple WHERE conditions combined with AND.

Implementation

Sqler whereAnd(List<Condition> conditions) {
  return where(AndWhere(conditions));
}