How do I use DBIx::Class objects in my TT templates?
Like normal objects, mostly. However you need to watch out for TT calling methods in list context. When calling relationship accessors you will not get resultsets, but a list of all the related objects. Starting with version 0.07, you can use “search_rs” in DBIx::Class::ResultSet to work around this issue.