I am working on android ROOM + Kotlin (Just started) I want to make a query which update the row of my table, but I am not able to find a definition on how to access the value from the parameter inside the query
@Query("UPDATE note_table SET description = :description, title= :title, priority = :priority WHERE id =:id")
fun updateNote(note : Notes)
I want to access the description from note object. like note.description how to do that inside the query !! Any help will good!