The documentation on the capabilities of the @Where annotation that I've located are vague.
Is there some better documentation on this annotation or (even better) some good examples of it's usage and capability? For example, does it support variable injection using parameters or POJO properties? If so, how?
Specifically, I'd like to do something like this:
Code:
@Where(clause="address_id = (select max(address_id) from address_table where person_id= <injected person_id of the person POJO>)")
Is this possible?