innerOR method
Implementation
NUIDBQueryCombination innerOR(InnerLevelQuery query){
NUIDBQueryCombination queryComb = NUIDBQueryCombination(queries: List(), operator: NUIDBQueryOperator.OR);
query(queryComb);
if(queryComb.queries.isNotEmpty) {
queries.add(queryComb);
}
return this;
}