Browse Source

DATACMNS-1777 - Polishing.

Add note about GraalVM when using TypedSort.

Original pull request: #461.
pull/462/head
Mark Paluch 5 years ago
parent
commit
9fbabdc820
No known key found for this signature in database
GPG Key ID: 51A00FA751B91849
  1. 2
      src/main/asciidoc/repositories.adoc

2
src/main/asciidoc/repositories.adoc

@ -453,6 +453,8 @@ Sort sort = person.by(Person::getFirstname).ascending() @@ -453,6 +453,8 @@ Sort sort = person.by(Person::getFirstname).ascending()
----
====
NOTE: `TypedSort.by(…)` makes use of runtime proxies by typically using CGlib which may interfere with native image compilation when using tools like Graal VM Native.
If your store implementation supports Querydsl, you can also use the metamodel types generated to define sort expressions:
.Defining sort expressions using the Querydsl API

Loading…
Cancel
Save