Hello,
I am working with an entity called Order, and the orderBrowse Collection has the query
select e from Order e
whenever I open OrderBrowse it gives me this error
and we believe it is because “order” is a reserved word
previously we used a prefix before using the class name "
select e from projectName_Order e
how can I reach the entity now without it clashing on to reserved words, without changing my entity names?
thank you