Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:39
Show Gist options
  • Save larkintuckerllc/7e651d84630b58d9d0a6e53aa5c532a1 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/7e651d84630b58d9d0a6e53aa5c532a1 to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 4
...
@Dao
public interface TodoDao {
@Query("SELECT * FROM Todo")
LiveData<List<Todo>> findAllTodos();
@Insert(onConflict = REPLACE)
void insertTodo(Todo todo);
@Delete
void deleteTodo(Todo todo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment