Originally posted by mini mehta:
...I don't think CMP will be of much use if it could only represent one table at a time.
I think if you make an EJBQL that goes like this:
SELECT Object(o)
FROM Orders o, IN(o.lineItems) i
WHERE i.description LIKE '%computer%'
There has to be a join going on. In fact, I think if you check the xml files that get built by your deployment tool, you will see SQL that affects this join.
--Dale--