Created
May 23, 2020 17:57
-
-
Save wangerekaharun/237108fef47a991df2e1acdaa4df2cb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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