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