whereContainedIn method

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

The value of key must be contained in values.

Implementation

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