Realm Object
Marker interface to define a model (managed by Realm).
Extensions
backlinks
Link copied to clipboard
fun <T : TypedRealmObject> RealmObject.backlinks(sourceProperty: KProperty1<T, *>, sourceClass: KClass<T>): BacklinksDelegate<T>
Content copied to clipboard
Defines a collection of backlinks that represents the inverse relationship between two Realm models. Any direct relationship, one-to-one or one-to-many, can be reversed by backlinks.
inline fun <T : TypedRealmObject> RealmObject.backlinks(sourceProperty: KProperty1<T, *>): BacklinksDelegate<T>
Content copied to clipboard
Returns a BacklinksDelegate that represents the inverse relationship between two Realm models.