Skip to content

Instantly share code, notes, and snippets.

@gabriel-TheCode
Created June 23, 2021 11:19
Show Gist options
  • Select an option

  • Save gabriel-TheCode/30f7a560bd30d570e5d40c59ea84fa39 to your computer and use it in GitHub Desktop.

Select an option

Save gabriel-TheCode/30f7a560bd30d570e5d40c59ea84fa39 to your computer and use it in GitHub Desktop.
Blog DAO
@Dao
interface BlogDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun insert(blogEntity: BlogCacheEntity): Long
@Query("SELECT * FROM blogs")
suspend fun get(): List<BlogCacheEntity>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment