> > - paginate the denormalised data, for example show a paginated list of > > students on a course? > > You cannot. ListProperty does not allow this.
How about something like this? limitby = (0, 10) students = db(db.student.id.belongs(course.students)).select(limitby = limitby) (where course.students is potentially quite large, but would that cause a problem?)