Apologies in advance for filing the tenth or so injection related Ctrl-Shift-F7 issue
Some Java code:
finalString hql = "from Foo foo where foo.bar = :barId";
final Query query = session.createQuery(hql);
query.setInteger("barId", 123);
Ctrl-Shift-F7 on "bar" node of "foo.bar" expression does not highlight anything (however, it does work in .hbm.xml).
Above example is nonsensical of course. However, in large queries Ctrl-Shift-F7 on entity property can be quite useful.
Description
Apologies in advance for filing the tenth or so injection related Ctrl-Shift-F7 issue
Some Java code:
finalString hql = "from Foo foo where foo.bar = :barId";
final Query query = session.createQuery(hql);
query.setInteger("barId", 123);
Ctrl-Shift-F7 on "bar" node of "foo.bar" expression does not highlight anything (however, it does work in .hbm.xml).
Above example is nonsensical of course. However, in large queries Ctrl-Shift-F7 on entity property can be quite useful.