您好我正在尝试在 DbFlow 中获取一个单列列表
当我使用这个时,我得到了所有的比赛细节
public List<Match> getMatchDetails() {
return SQLite.select()
.from(Match.class)
.queryList();
}
但我实际上需要所有比赛的得分列表,所以我尝试获取这样的得分详细信息。
public List<String> getScore() {
return SQLite.select(Match_Table.score) // (score is string)
.from(Match.class)
.queryList();
}
But still I can fetch details as List<Match> and not List<String>. Am I doing anything wrong?