Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Dao
- public interface CountryDao {
- @Insert(onConflict = OnConflictStrategy.REPLACE)
- void addCountry(Country country);
- @Query("SELECT DISTINCT name from country")
- public List<String> getCountry();
- }
Add Comment
Please, Sign In to add comment