Help for this page

Select Code to Download


  1. or download this
    my @proc_requests = $schema->resultset( 'TblRequests' )->search({
                    -or => [
                          status => 'Offered',
    ...
                   },
                   { prefetch => 'p' }
         );
    
  2. or download this
    my @proc_requests = $schema->resultset('TblRequests')->search(
        {
            -or => [
    ...
        },
        { prefetch => 'p' }
    );
    
  3. or download this
    my @proc_requests = $schema->resultset('TblRequests')->search(
        {
            -or => [
    ...
        },
        { prefetch => 'p' }
    );