
What is?
Database Inquiry handling about ORM, creating complex enquiries and handling relationships based on the properties of business entities. WIN if an enquiry is not well written or does not compile properly.
Example usage
Free email search:@Override public boolean existEmail(final String email, final Long userId) { BooleanBuilderExt booleanBuilder = new BooleanBuilderExt(); booleanBuilder.and(getEntityPath().active.isTrue()); booleanBuilder.and(getEntityPath().person().email.eq(email)); return existByQueryDsl(booleanBuilder); }