We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Crashes with KeyNotFound(util::format("No object with key '%1' in '%2'", k.value, get_owning_table()->get_name())).
KeyNotFound(util::format("No object with key '%1' in '%2'", k.value, get_owning_table()->get_name()))
Simple repro case (from Swift SDK but I'm sure can be replicated in core):
let realm = try Realm() let collectionObject = SwiftCollectionSyncObject() let personObject = SwiftPerson() try realm.write { realm.add(collectionObject) realm.add(personObject) } try realm.write { collectionObject.objectSet.insert(personObject) } try realm.write { realm.delete(collectionObject) } try realm.write { realm.delete(personObject) }
The text was updated successfully, but these errors were encountered:
jedelbo
Successfully merging a pull request may close this issue.
Crashes with
KeyNotFound(util::format("No object with key '%1' in '%2'", k.value, get_owning_table()->get_name()))
.Simple repro case (from Swift SDK but I'm sure can be replicated in core):
The text was updated successfully, but these errors were encountered: