Skip to content

Instantly share code, notes, and snippets.

@deepanshu42
Created May 23, 2020 09:50
Show Gist options
  • Select an option

  • Save deepanshu42/6edd4b2e6efcc6099cfca3aaab4c808c to your computer and use it in GitHub Desktop.

Select an option

Save deepanshu42/6edd4b2e6efcc6099cfca3aaab4c808c to your computer and use it in GitHub Desktop.
Room with LiveData Example
@Dao
interface UserDao {
@Query("SELECT * FROM users")
fun getAllLiveData(): LiveData<List<User>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment