whereAll method
Matches ALL of the conditions
Implementation
@override
QueryBuilderInterface<T> whereAll(Map<String, dynamic> conditions) {
conditions.forEach((column, value) {
where(column, '=', value);
});
return this;
}
Matches ALL of the conditions
@override
QueryBuilderInterface<T> whereAll(Map<String, dynamic> conditions) {
conditions.forEach((column, value) {
where(column, '=', value);
});
return this;
}