whereAny abstract method

QueryBuilderInterface<T> whereAny(
  1. List<String> columns,
  2. String operator,
  3. dynamic value
)

Matches ANY of the columns with the given operator and value

Implementation

QueryBuilderInterface<T> whereAny(
  List<String> columns,
  String operator,
  dynamic value,
);