You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to allow subclasses to e.g. represent a ReturnedType that is a class outside of the entity hierarchy but not a projection. This can happen in queries that select nested properties:
@Query("select u.address from User u where u.emailAddress = ?1")
Optional<Address> findAddressByAnnotatedQuery(StringemailAddress);
@Query("select u.address.city from User u where u.emailAddress = ?1")
StringfindCityByAnnotatedQuery(StringemailAddress);
The text was updated successfully, but these errors were encountered:
We would like to allow subclasses to e.g. represent a
ReturnedType
that is a class outside of the entity hierarchy but not a projection. This can happen in queries that select nested properties:The text was updated successfully, but these errors were encountered: