i have code
fun loadAllNotes() : MutableList<Note> = Select.from(Note::class.java).fetch()
but i have trouble with Select.from: Unresolved reference: from. It's code by guide and it works in tutorial. How can i fix it?
i have code
fun loadAllNotes() : MutableList<Note> = Select.from(Note::class.java).fetch()
but i have trouble with Select.from: Unresolved reference: from. It's code by guide and it works in tutorial. How can i fix it?
need to use
not