如何使用JpaRepository和对象的嵌套列表进行搜索?

如何使用JpaRepository和对象的嵌套列表进行搜索?,第1张

如何使用JpaRepository和对象的嵌套列表进行搜索?

首先,

experienceInMonths
从更改
String
int
(否则您无法将字符串与数字进行比较)。然后,您可以尝试使用此“香肠”:

List<Person> findByQualifications_experienceInMonthsGreaterThanAndQualifications_experienceInMonthsLessThanAndName(int experienceGreater, int experienceLess, String name);

或者,您可以尝试使用这种非常不错的方法:

@Query("select p from Person p left join p.qualifications q where q.experienceInMonths > ?1 and q.experienceInMonths < ?2 and q.name = ?3")List<Person> findByQualification(int experienceGreater, int experienceLess, String name);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5673996.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存