How to write HQL JOIN query for multiple table's selected Columns using Constructor In The Select Clause

后端 未结 1 496
天涯浪人
天涯浪人 2020-12-12 04:14

I\'m writing HQL JOIN query for multiple table\'s selected Columns using Constructor() In The Select Clause

I have fo

相关标签:
1条回答
  • 2020-12-12 04:39

    The error tells you that Hibernate couldn't locate the Notify constructor.

    More, you are not allowed to add Integer.parseInt in your HQL query. Use the expected type from the ResultSet and do the casting inside the constructor from the incoming parameter.

    0 讨论(0)
提交回复
热议问题