2017-06-16 70 views
0

我想使用orderBy與我的實體類的一個屬性,請任何人都可以建議如何使用OrderBy關鍵字在jpa spring repository中,因爲我沒有在jpa的默認關鍵字列表中獲取此關鍵字。如何在jpa spring repository中使用OrderBy?

+0

[如何在Spring Data中使用OrderBy和findAll](https://stackoverflow.com/questions/25486583/how-to-use-orderby-with-findall-in-spring-data) –

回答

0

使用OrderBy例如

List findByLastnameOrderByFirstnameAsc(String lastname);

1

使用可以使用Spring Data Jpa的orderBy屬性。

findByLastnameOrderByFirstnameDesc(String lastName) 

會做你想要的。

相關問題