We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. On the Order bean:
@OneToMany(cascade=CascadeType.ALL, mappedBy="order") @OrderBy("id asc, orderQty asc, cretime desc") List<OrderDetail> details;
The order by is being ignored when the details are lazy loaded
The text was updated successfully, but these errors were encountered:
This was likely introduced in v3.x (with the refactoring on the lazy loading on many properties).
Sorry, something went wrong.
Fix for #154 - @orderby on a @onetomany property is not used when laz…
1109d41
…y loading
Fixed in head/master.
Merge pull request #272 from rlamarche/develop-3.3
c766793
Backport fix for #154 - @orderby on a @onetomany property is not used when lazy loading
rbygrave
No branches or pull requests
e.g. On the Order bean:
The order by is being ignored when the details are lazy loaded
The text was updated successfully, but these errors were encountered: