The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

    DBIx::Class::ResultSetManager - helpful methods for managing resultset classes (EXPERIMENTAL)

SYNOPSIS

    # in a table class
    __PACKAGE__->load_components(qw/ResultSetManager Core/); # note order!
    __PACKAGE__->load_resultset_components(qw/AlwaysRS/);
    
    # will be removed from the table class and inserted into a table-specific resultset class
    sub foo : ResultSet { ... }

DESCRIPTION

This package implements two useful features for customizing resultset classes. load_resultset_components loads components in addition to DBIx::Class::ResultSet (or whatever you set as base_resultset_class). Any methods tagged with the ResultSet attribute will be moved into a table-specific resultset class (by default called Class::_resultset, but configurable via table_resultset_class_suffix). Most of the magic is done when you call __PACKAGE__->table.

AUTHORS

David Kamholz <dkamholz@cpan.org>

LICENSE

You may distribute this code under the same terms as Perl itself.