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::ResultSet::RemoveColumns - Remove columns from a ResultSet

Author

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

Description

       This component allows convenient removal of columns from a select.  Normally to do this you would do this
       by listing all of the columns except the ones you want to remove.  This does that part for you.  See
       "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema.

       It doesn't get a lot more complicated than the synopsis.  If you are interested in having more control,
       check out DBIx::Class::Helper::ResultSet::AutoRemoveColumns.

       •   Load the component

       •   Put an "ArrayRef" of columns to remove in the "remove_columns" search attribute.

       •   Profit.

Name

       DBIx::Class::Helper::ResultSet::RemoveColumns - Remove columns from a ResultSet

Synopsis

        package MySchema::ResultSet::Bar;

        use strict;
        use warnings;

        use parent 'DBIx::Class::ResultSet';

        __PACKAGE__->load_components('Helper::ResultSet::RemoveColumns');

        # in code using resultset:
        my $rs = $schema->resultset('Bar')->search(undef, {
           remove_columns => ['giant_text_col', 'password'],
        });

See Also