Help for this page

Select Code to Download


  1. or download this
    $schema->resultset("Artist")->populate([
       { artistid => 4, name => 'Manufactured Crap', cds => [
    ...
        ],
       },
    ]);
    
  2. or download this
    my $artistsAndTitles = $schema->resultset('Artist')->
       search(...)->search_related_rs('cds', {...})->as_data
    ...
    
    my $artistsAndTitles = $schema->resultset('Artist')->
       cds()->as_data ;
    
  3. or download this
    [
       { artistid => 4, name => 'Manufactured Crap', cds => [
    ...
        ],
       }
    ]