如何将OrderBy与GreaterThan Spring JPA一起使用

前端之家收集整理的这篇文章主要介绍了如何将OrderBy与GreaterThan Spring JPA一起使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的Repository接口中添加一个方法,该方法可以找到大于long publishdata值的所有数据并将其Decreacingly命令:

我尝试过这个,但它似乎没有起作用:

@Repository
public interface NoticiaRepository extends CrudRepository<Noticia,Long>{

    Noticia findById(long id);
    List<Noticia> findByOrderPublishdateGreaterThanDesc(long publishdate);

}

解决方法

List<Noticia> findByPublishdateGreaterThanOrderByPublishdateDesc(Long publishdate)
原文链接:https://www.f2er.com/mssql/76617.html

猜你在找的MsSQL相关文章