Tagged Questions
1
vote
5answers
729 views
How to avoid hardcoded field names in HQL, Hibernate?
Suppose that I have the following HQL:
String hql = "select e.aField from MyEntity as e";
If I want to refactor and change the name of the MyEntity's member variable aField to something else, I ...