return Optional.ofNullable(dslContext.select()
.from(USER_ACCOUNT)
.join(BORROWER)
.on(USER_ACCOUNT.ID.eq(BORROWER.USER_ACCOUNT_ID))
.join(ADDRESS)
.on(BORROWER.ADDRESS_ID.eq(ADDRESS.ID))
.where(USER_ACCOUNT.EMAIL.eq(email))
.fetchOne());
This statement does not work. However the statement works.
return Optional.ofNullable(dslContext.select()
.from(USER_ACCOUNT)
.where(USER_ACCOUNT.EMAIL.eq(email))
.fetchOne());
Please help.
--
You received this message because you are subscribed to the Google Groups "jOOQ
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.