Skip to content

Instantly share code, notes, and snippets.

@wangerekaharun
Created October 27, 2019 12:25
Show Gist options
  • Save wangerekaharun/769d37b0e5f61d05797f73a18a6834a3 to your computer and use it in GitHub Desktop.
Save wangerekaharun/769d37b0e5f61d05797f73a18a6834a3 to your computer and use it in GitHub Desktop.
How to use room expand projections
@Dao
interface SongsDao {
@Query("SELECT * FROM song")
suspend fun getAllSongs(): List<NameAndId>
}
// data class with only name and id
data class NameAndId(val id: Long, val songName: String)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment