Closed
Description
related to #1858
The @Query
Annotation doesn't work correctly when using the ReactiveCrudRepository
and a parameter of the type Collection
.
Looking at the StringQueryUtil
class, the non-reactive repository uses ParametersParameterAccessor
, the reactive one uses ConvertingParameterAccessor
which iterates over the parameter list.
Creating a custom object instead of a Collection
also doesn't seem to be feasible to represent a collection of String
since all doublequotes are escaped by the StringQueryUtil