Når i kotlin kode:
Før
@ColumnInfo(name = "question_id")
var questionId: Long
Efter
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long
Når i kotlin kode:
Før
@ColumnInfo(name = "question_id")
var questionId: Long
Efter
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long