문제

How to list all records in a single page without pagination. Now I didn't use limit to fetch selected records, but it returns only 20 records in a page.

How to remove limit from my query to retrieve all records?

UPDATE

def collection
 @users ||= apply_scopes(User).where(status: 'ACTIVE').order(sort_column + " " + sort_direction).includes(:replies)
end

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top