logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DBIx::Class::Helper::Row::CleanResultSet - Get an unfiltered ResultSet from the row

Author

       Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

Description

       Sometimes you need to be able to access the ResultSet containing all rows.

Methods

clean_rs
        $row->clean_rs

Name

       DBIx::Class::Helper::Row::CleanResultSet - Get an unfiltered ResultSet from the row

Synopsis

       In result class:

        __PACKAGE__->load_components('Helper::Row::CleanResultSet');

       Elsewhere:

        $row->clean_rs->$some_rs_method

       similar to:

        $row->result_source->resultset->$some_rs_method

See Also