Uwe (ObjectBox)
Uwe (ObjectBox)
No updates. If you are just interested in this, please thumbs up the first comment to help us track interest. Note that there is a limited workaround by [using a...
Thanks for the suggestion! **For anyone else interested, please thumbs up the first comment. This helps us track interest.** Based on a quick search, it appears [support for compiling native...
Thanks for reporting! I guess the culprit is that the model file is only touched by the annotation processor. We need to check if it can somehow be indicated to...
@rAseri Thanks for testing this! Looks like adding an input to the kapt (or Java equivalent annotation processor) task is what we will let the Gradle plugin do then. (Added...
This also affects other query functionalities, e.g. - create a query condition on a string that matches both upper and lower case UTF-8 characters (originally #684) - create a unique...
Thanks for your question and detailed research and explanation. I guess this can be caused by the internal change tracking of `ToMany`, e.g. see https://github.com/objectbox/objectbox-java/blob/b17ac520a74df80dd9e1f69a5a73f91ad1dc2cb2/objectbox-java/src/main/java/io/objectbox/relation/ToMany.java#L792-L853 The `entitiesAdded` and `entitiesRemoved` maps...
Maybe another option: put the event objects into their box first, only then add them to the ToMany and save the owning object. E.g. something like: ```kotlin store.box().put(events) collector.events.addAll(events) store.box().put(collector)...
Appears to be resolved.
Closing this as duplicate of #19.
Thanks for the suggestion! Using a Go library in an iOS app was not on our radar when we first created the Go and Swift libraries. Providing a separate pod...