8

我正在使用 Realm v0.80.1,我正在尝试为我添加的新属性编写迁移代码。该属性是一个 RealmList。我不确定如何正确添加新列或设置 aa 值。

我所拥有的:customRealmTable.addColumn(, "list");

正确添加列后,我将如何为列表属性设置初始值?我想做类似的事情:

customRealmTable.setRealmList(newColumnIndex, rowIndex, new RealmList<>());

4

2 回答 2

15

从 Realm v1.0.0(可能更早)开始,您可以简单地调用RealmObjectSchema#addRealmListField(String, RealmObjectSchema)链接到 javadoc)来实现这一点。例如,如果你想在你的类中添加一个permissions类型的字段,你会写:RealmList<Permission>User

if (!schema.get("User").hasField("permissions")) {
    schema.get("User").addRealmListField("permissions", schema.get("Permission"));
}

在 Realm 的迁移文档中也有一个示例。为方便起见,这里是完整的 javadoc addRealmListField

/**
 * Adds a new field that references a {@link RealmList}.
 *
 * @param fieldName  name of the field to add.
 * @param objectSchema schema for the Realm type being referenced.
 * @return the updated schema.
 * @throws IllegalArgumentException if the field name is illegal or a field with that name already exists.
 */
于 2016-10-05T21:11:04.843 回答
7

您可以在此处的示例中查看添加 RealmList 属性的示例:https ://github.com/realm/realm-java/blob/master/examples/migrationExample/src/main/java/io/realm/examples/realmmigrationexample /model/Migration.java#L78-L78

相关代码是本节:

   if (version == 1) {
            Table personTable = realm.getTable(Person.class);
            Table petTable = realm.getTable(Pet.class);
            petTable.addColumn(ColumnType.STRING, "name");
            petTable.addColumn(ColumnType.STRING, "type");
            long petsIndex = personTable.addColumnLink(ColumnType.LINK_LIST, "pets", petTable);
            long fullNameIndex = getIndexForProperty(personTable, "fullName");

            for (int i = 0; i < personTable.size(); i++) {
                if (personTable.getString(fullNameIndex, i).equals("JP McDonald")) {
                    personTable.getRow(i).getLinkList(petsIndex).add(petTable.add("Jimbo", "dog"));
                }
            }
            version++;
        }
于 2015-05-29T06:48:26.617 回答