Hi,
I have two domain objects Person and Address.
Person hasmany addresses.
I need join these two using Criteria Builder. Below is the SQL :
select * from Person p, Address a where p.address_id = a.id and p.id=?
How to convert this into Criteria in Grails?
Appreciate your help.
Thanks
Sudhakar