Skip to content

Instantly share code, notes, and snippets.

@JacquesSmuts
Created April 25, 2019 18:05
Show Gist options
  • Save JacquesSmuts/edde89d887a97e2dafe7da164f39ed5d to your computer and use it in GitHub Desktop.
Save JacquesSmuts/edde89d887a97e2dafe7da164f39ed5d to your computer and use it in GitHub Desktop.
class UserRepository(private val database: DeviceDatabase) {
val liveUsers: LiveData<List<User>> = Transformations.map(database.userDao().liveUsers) {
it.map {
it.toUser()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment