whereNotContainedIn method

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

The value of key must not be contained in values.

Implementation

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