Top "Realm-list" questions

Realm List is a custom collection defined in the Realm mobile database framework that can be used for defining to-many relationships in object models.

RealmList of String Type in Android

I'm using Realm for Local storage in Android. I'm getting following response form server. [{ "ListId": 10, "Names": ["Name1", "Name2", "Name3", "Name4"] }] …

android realm realm-list
Can I have arrayList of string in realm object android

As we dont have any list data type in realm, how can we use ArrayList<String> in a …

java android arraylist realm realm-list
How can I set LIMIT in query in Realm?

I have done R&D for limit in query with no success. There is one way with which to …

android realm realm-list
Delete objects from List in Realm - Swift

I have a collection view where you can select multiple cells to delete. This means that if multiple cells are …

ios swift uicollectionview realm realm-list
Adding new Object to existing List in Realm

I have two classes. First looks like that: class Person: Object { dynamic var owner: String? var dogs: List<Dogs&…

ios swift realm realm-list
How to sort the RealmResults with recents dates?

I have around 20 rows in RealmResults and need to sort the list with recent dates RealmConfiguration realmConfig = new RealmConfiguration.Builder(…

realm realm-list
How to convert RealmResults<Model> to ArrayList<Model>?

When I use realm.where(Model.class) it returns RealmResults and list item's fields are empty. How to convert queryset …

java realm realm-list
Android Realm Migration: Adding new Realm list column

Im using Realm v0.80.1 and I am trying to write migration code for a new property I added. The property …

android migration realm realm-list realm-migration
Android Realm - findAll returns objects with null parameters

I need to do a simple query in Realm, retrieve a list of MyModel object and later use it somewhere …

android realm realm-list