Hello, guys,
I am using Spring Data JPA in one of our project. The JPA structure like:
Class A {
B b;
String c;
}
Class B {
String d;
}
I wanna do a query on Class A but sort by b.d. How can I do it? I cannot find any clue on Spring Data JPA document.


Reply With Quote
