- or download this
my $count = Core::Models->resultset('Shipment')->search(
undef,
{ prefetch => 'rma' }
)->count();
- or download this
package Models::Result::Shipment;
...
__PACKAGE__->set_primary_key('id');
1;
- or download this
$count = Core::Models->resultset('Shipment')->search(
undef,
{
...
as => [ 'total_count' ],
}
)->get_column('total_count')->first();