Skip to content

Instantly share code, notes, and snippets.

@mantisbayne
Last active November 24, 2019 22:46
Show Gist options
  • Save mantisbayne/db9ea70be47ce764e64937d28ed3cb08 to your computer and use it in GitHub Desktop.
Save mantisbayne/db9ea70be47ce764e64937d28ed3cb08 to your computer and use it in GitHub Desktop.
@Dao
interface ExampleDao {
@Query("SELECT * FROM examples")
fun getExamples(): LiveData<List<Example>>
@Query("SELECT * FROM examples WHERE id = :id)")
fun getExampleById(id: String): LiveData<Example>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment