Khi ở mã kotlin:
Trước
@ColumnInfo(name = "question_id")
var questionId: Long
Sau
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long
Khi ở mã kotlin:
Trước
@ColumnInfo(name = "question_id")
var questionId: Long
Sau
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long