SyntaxFix
Write A Post
Hire A Developer
Questions
I had this problem when i was trying to query by passing a Set and i didn't used In
example
problem : repository.findBySomeSetOfData(setOfData);
repository.findBySomeSetOfData(setOfData);
solution : repository.findBySomeSetOfDataIn(setOfData);
repository.findBySomeSetOfDataIn(setOfData);