andMap<T> method
Implementation
Find andMap<T>(Iterable<T> iterable, MappedExpression<T> func) {
iterable.forEach((T v) {
final Expression exp = func(v);
if (exp != null) _where = _where.and(exp);
});
return this;
}
Find andMap<T>(Iterable<T> iterable, MappedExpression<T> func) {
iterable.forEach((T v) {
final Expression exp = func(v);
if (exp != null) _where = _where.and(exp);
});
return this;
}