Skip to content

Tag: intellij-idea

Querying using class in Spring

i’m trying to do this query List<Product> findProductByCategory_CategoryNameAndPriceBetween(String category, double min, double max); but the return of the query is an empty list. What am I doing wrong? I also tried without the underscore between Category and Category Name. This are the class cate…