Reputation: 3115
I want to use this query on will_paginate
:
@courses = Course.where("id not in (?)", current_user.courses).paginate :page => params[:page], :order => 'code asc'
It doesn't get me the results I want, unfortunately.
Upvotes: 3
Views: 1394