Skip to content

Instantly share code, notes, and snippets.

@anangkur
Last active September 30, 2022 07:32
Show Gist options
  • Save anangkur/176549e78e65133b663954372fe02ddc to your computer and use it in GitHub Desktop.
Save anangkur/176549e78e65133b663954372fe02ddc to your computer and use it in GitHub Desktop.
@Dao
interface RoomDao {
@Insert
suspend fun insertData(entity: Entity)
@Query("select * from table")
suspend fun getAllData(): List<Entity>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment