Spring Data JPA-如何编写findByObjectIn查询?

时间:2019-04-02 15:57:25

标签: spring-data-jpa

我想这样写一个查询(我知道它不起作用)。

@Component
public interface CountryRepository extends CrudRepository<Country, Integer> {

    @Query("select c from Country c " +
            "where c IN (:countriesCustom)")
    List<GfcaMtps> findByCountryPkAndAliceIdIsNull(List<CountryCustomPk> countriesCustom);

}

0 个答案:

没有答案