where method
NUIDBQueryCombination
where({
- required String field,
- required NUIEntType type,
- required NUIDBQueryType condition,
- required dynamic value,
Implementation
NUIDBQueryCombination where({required String field, required NUIEntType type, required NUIDBQueryType condition, required dynamic value}){
queries.add(NUIDBQuery(field: NUIDBFieldQuery(name: field, type: type), type: condition, value: value));
return this;
}