I've been using SqlList() to receive result sets from SPs and it is handy.
var people = db.SqlList<Person>("EXEC GetRockstarsAged @age", new { "age", 42 });
but how can I use this OrmLite to get multiple result sets from a single SP? Using the above approach only seems to retrieve the first result set.