79415068

Date: 2025-02-05 14:26:36
Score: 0.5
Natty:
Report link

JPQL works with entity property names (the fields or getter/setter methods in your Java class) rather than the actual database column names. So if your last_updated_on is a field in your BaseEntity class, and your entity uses camelCase for property names, you should use f.lastUpdatedOn in your query instead of f.last_updated_on.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kevin Luko