Skip to content

Instantly share code, notes, and snippets.

@wangerekaharun
Created May 23, 2020 17:57
Show Gist options
  • Save wangerekaharun/237108fef47a991df2e1acdaa4df2cb7 to your computer and use it in GitHub Desktop.
Save wangerekaharun/237108fef47a991df2e1acdaa4df2cb7 to your computer and use it in GitHub Desktop.
data class LocationAndAccelerations(
@Embedded val locationModel: LocationModel,
@Relation(
parentColumn = "id" ,
entityColumn = "gpsId"
)
val accelerations: List<AccelerationModel>
)
@Transaction
@Query("SELECT * FROM LocationModel")
fun getLocationAndAccelerations(): LiveData<List<LocationAndAccelerations>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment