Created
May 12, 2017 10:50
-
-
Save parahall/2da22827083a5afe8a06ae8f2e91b8f8 to your computer and use it in GitHub Desktop.
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 | |
public interface StarWarsMovieDao { | |
@Query("select * from StarWarsMovie") LiveData<List<StarWarsMovie>> loadMovies(); | |
@Query("DELETE FROM StarWarsMovie") void deleteAll(); | |
@Insert(onConflict = REPLACE) void insertMovie(StarWarsMovie starWarsMovie); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment