我需要在greenDAO中进行查询,以获取日期等于给定日期的活动。 这是我的班级Activity属性:
@Id(autoincrement = true)
private Long id;
private String titulo;
private String descripcion;
private String descripcionCorta;
@Transient
private List<Integer> imagenes;
@ToMany(referencedJoinProperty = "_id")
private List<Valoracion> valoraciones;
private int icono = android.R.mipmap.sym_def_app_icon;;
private String destino;
@ToMany(referencedJoinProperty = "idFecha")
private List<Fecha> fechas;
“ Fecha”是一个存储Date的类,我必须创建一个自定义类将其保存为List。 这是Fecha类的属性:
@Id(autoincrement = true)
Long idFecha;
Date fecha;
因此,我要执行的查询是:获取其List属性至少比给定日期晚一个Date的活动。