Help for this page

Select Code to Download


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