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/);
    __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).

AUTHORS

David Kamholz <dkamholz@cpan.org>

LICENSE

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