Hi,
I've got a question about HQL and outer joins.
I use Hibernate 2.1.4.
I would like to do an outer join between two tables without mapping the relation. The relation is a one-to-one but this relation is used only once and I don't want to do the mapping. The reason is that the table B needs to be a proxy, instead, when loading A the query will also load B.
But B is also used elsewhere...
So, can I use HQL to do something like :
Code:
select
[...]
from
A
left outer join B on (conditions ...)
where
[...]
Thanks
Jerome