Created
June 23, 2021 11:19
-
-
Save gabriel-TheCode/30f7a560bd30d570e5d40c59ea84fa39 to your computer and use it in GitHub Desktop.
Blog DAO
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
| @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