Closed GoogleCodeExporter closed 9 years ago
It's not a defect it's an improvement
Original comment by gaguilar...@gmail.com
on 5 Sep 2010 at 4:49
This is current patch.
I will improve it as I said if it's a correct way of perform.
Also I'm thinking about doing something similar with the Filter EQUALS but
doing joins between queries when they are simple.
Original comment by gaguilar...@gmail.com
on 5 Sep 2010 at 4:59
Attachments:
Here is another way to accomplish this search without having to change the code:
Search leadSearch = new Search(SurveyAnswer.class);
leadSearch.addField("lead");
leadSearch.addEquals("idLot", "132");
leadSearch.addILike("lead.leadBasicDetails.fullName", "%gonzalo%");
int count = surveyAnswerDAO.count(leadSearch);
log.debug("Count is :" + String.valueOf(count));
return count;
Original comment by dwolvert
on 1 Oct 2010 at 3:04
Original issue reported on code.google.com by
gaguilar...@gmail.com
on 5 Sep 2010 at 4:48