Hi,
I am facing a issue with the query generated by hibernate to load from database.
SELECT this_.id AS id25_1_,
this_.name AS name25_1_,
offices2_.legal_entity_id AS legal3_3_,
offices2_.id AS id3_,
offices2_.id AS id27_0_,
offices2_.name AS name27_0_,
offices2_.legal_entity_id AS legal3_27_0_
FROM cm.legal_entities this_
LEFT OUTER JOIN cm.offices offices2_ ON this_.id = offices2_.legal_entity_id;
Why is hibernate generating query with duplicate reference to offices2_.id ?
My hbm file for legal_entities table is -
And hbm for office is -
Thanks in advance,
Amey