As the title says, is there a way to check for an empty collection in a SODA query?
I can check if the collection field is set to null and check property values in the collection elements, but don't know how to check if the collection has no elements.
Any help is appreciated :)
Edit 1: I do know how to make the query happen outside the db4o filtering i.e. by switching to use Native Queries or LINQ; or doing the equivalent that happens when checking the collection's count, which is using an Evaluation.
I'm actually trying to avoid the activations caused by a Native Query that was in there, as it really hits us in performance in our scenario.