我想要排除某些不受领域支持的字段,例如Calendar。让我们假设我有这门课。
class time extends RealmObject{
private Calendar calendar;
@PrimaryKey
private int id;
private int hour;
private int minute
//... getters and setters
}
如何排除日历,因为领域不支持。有可能吗?
答案 0 :(得分:2)
使用您所在字段的@Ignore annotation。
class time extends RealmObject{
@Ignore
private Calendar calendar;