Skip to content

Instantly share code, notes, and snippets.

@mikkipastel
Created September 26, 2017 07:40
Show Gist options
  • Save mikkipastel/6f8414e1611b98df34042c7b39253c7f to your computer and use it in GitHub Desktop.
Save mikkipastel/6f8414e1611b98df34042c7b39253c7f to your computer and use it in GitHub Desktop.
paging library with Room in Android Architecture Component
@Dao
interface UserDao {
@Query("SELECT * FROM user ORDER BY lastName ASC")
public abstract LivePagedListProvider<Integer, User> usersByLastName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment