qr.appendObjectVector(qr1.getObjectVector());
It adds result of qr1 to qr. It works.
But I have 10+ different parts to search like that. executing PersistenceHelper.manager.find so many times and keep adding result might not be that efficient. Is there a way I can build(using appendWhere,appendOr something like that..) query and excecute it only once to get result?
Thanks for your reply. I have now workaround but I am still looking to build a query. Is it possible?