I'm work with activejdbc and:
I have 3 Models: City belongs to State belongs to Country, ok? I do this:
Paginator p = new Paginator(City.class, count, filters).orderBy(orderParams); LazyList page = p.getPage(pag).include(State.class);
This, loads cities with their states (i do page.toMaps()),
Now I want to load the country also
It's possible?