Skip to content

Instantly share code, notes, and snippets.

@parahall
Created May 12, 2017 10:50
Show Gist options
  • Save parahall/2da22827083a5afe8a06ae8f2e91b8f8 to your computer and use it in GitHub Desktop.
Save parahall/2da22827083a5afe8a06ae8f2e91b8f8 to your computer and use it in GitHub Desktop.
@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