如何排除某些字段被复制到领域数据库?

时间:2016-07-23 16:33:33

标签: android realm

我想要排除某些不受领域支持的字段,例如Calendar。让我们假设我有这门课。

class time extends RealmObject{

private Calendar calendar;
@PrimaryKey
private int id;
private int hour;
private int minute
//... getters and setters
}

如何排除日历,因为领域不支持。有可能吗?

1 个答案:

答案 0 :(得分:2)

使用您所在字段的@Ignore annotation

class time extends RealmObject{
    @Ignore
    private Calendar calendar;