whereContainsAll method

LCQuery<T> whereContainsAll(
  1. String key,
  2. Iterable values
)

The array key must contain all values.

Implementation

LCQuery<T> whereContainsAll(String key, Iterable values) {
  condition.whereContainsAll(key, values);
  return this;
}