Skip to content

Instantly share code, notes, and snippets.

@ericntd
Created December 29, 2020 16:41
Show Gist options
  • Save ericntd/ad170c753e0b20d5fca1dd73143cacd4 to your computer and use it in GitHub Desktop.
Save ericntd/ad170c753e0b20d5fca1dd73143cacd4 to your computer and use it in GitHub Desktop.
Room configuration
@Database(
entities = [
//...
QuestionEntity::class
],
//...
)
abstract class MyDb : RoomDatabase() {
//...
abstract fun questionDao(): QuestionRoomDao
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment