http://qs1969.pair.com?node_id=11140672


in reply to Re^2: Catalyst Models Definitive Guide
in thread Catalyst Models Definitive Guide

Thank you, yes I have generally avoided doing ->all in a resultset method for the same reason; also because I may want to return a resultset rather than an array, so if I want an array I can either call it in array context: @people = $c->model("DB::People")->listall or chain $c->model("DB::People")->listall->all.