Skip to content

Instantly share code, notes, and snippets.

@anandwana001
Created August 9, 2018 16:54
Show Gist options
  • Save anandwana001/bdf4d08a07410c9825da27325fe26fdd to your computer and use it in GitHub Desktop.
Save anandwana001/bdf4d08a07410c9825da27325fe26fdd to your computer and use it in GitHub Desktop.
@Dao
interface HabitDao {
@Insert
fun insert(habit: Habits)
@Query("DELETE FROM habitClass")
fun deleteAll()
@Query("SELECT * FROM habitClass ORDER BY habit ASC" )
fun getAllHabits() : List<Habits>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment