Hi,
I can’t find a way to migrate a list of embedded object during a migration. The scenario is I have an existing RealmObject
referenced in a RealmList
by another RealmObject
and I want to migrate to an embedded list of RealmObject
I tried to use a RealmList
of DynamicRealmObject
or of my Realm class directly, without success.
It looks java SDK was using createEmbeddedObject
but I can’t find any equivalent in the Kotlin SDK
Here is a sample with my tests → https://github.com/rlatapy-luna/Compose-Playground/tree/realm/migration_embbeded
Thank you