通过嵌套的多字段字段排序,Spring数据

时间:2019-01-08 13:57:25

标签: nested spring-data-jpa sql-order-by

我正在阅读这个问题How to use OrderBy with findAll in Spring Data

这个问题How to sort by multiple properties in Spring Data (JPA) derived queries?

问题Spring JPA - Find By EmbeddedId partially不能回答我的问题,因为我的问题不是由嵌套的“查找其他订单”询问。

但是我有一个嵌套的ID。

public class OutEntity implements java.io.Serializable {

     private OutEntityId id;
     private String nameDepartment;
     private String nameMunicipality;
     ...

Id

@Embeddable
public class OutEntityId implements java.io.Serializable {

     private Long codeDepartment;
     private Long codeMunicipality;
     ...

我想知道如何获得全部,按codeDepartment升序和codeMunicipality升序排序

没有本机查询是否可能?

0 个答案:

没有答案