使用外来对象字段的值进行查询的最佳方法是什么?
假设我有这三个类。
描述单位数量的 UnitResult 类:
@DatabaseTable
public class UnitResult {
public static final String ID_FIELD_NAME = "id";
public static final String UNIT_COLUMN_NAME = "unit";
public static final String RESULT_COLUMN_NAME = "result";
@DatabaseField(generatedId = true, columnName = ID_FIELD_NAME)
public Integer id;
@DatabaseField(foreign = true, canBeNull = false, columnName = UNIT_COLUMN_NAME)
public Unit unit;
@DatabaseField(canBeNull = true, columnName = RESULT_COLUMN_NAME)
public Integer result = null;
}
描述市场中某些单位的单位类别(例如果汁、零食等):
@DatabaseTable
public class Unit {
public static final String ID_FIELD_NAME = "id";
public static final String TYPE_FIELD_NAME = "type";
@DatabaseField(id = true, columnName = ID_FIELD_NAME)
public int id;
@DatabaseField(canBeNull = false, columnName = TYPE_FIELD_NAME)
public UnitType type;
}
以及 Unit 类型的枚举:
public enum UnitType {
JUICES,
DRINKS,
SNACKS,
NPD;
}
那么如何查询所有类型在UnitResult
哪里?Unit
UnitType.JUICES