whereContains method

LCQuery<T> whereContains(
  1. String key,
  2. String subString
)

Implementation

LCQuery<T> whereContains(String key, String subString) {
  condition.whereContains(key, subString);
  return this;
}