Replies: 1 comment 1 reply
-
|
Actually you need to apply filter on a field with values like number or string. You can create filter like - |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I have this model:
When I remove some feeds from the database, I also need to remove any associated article. So, I do this:
The issue is that this line
ar.remove(where("feed").in(feeds));seems to do nothing. I did some debugging and I discovered that this if check is always skipped because the retrieved field is not an instance of Feed but a generic Document.I don't get why though, I have the Jackson module loaded, I expect values to be serialized/deserialized when needed?
@anidotnet Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions