- or download this
package Role;
Role->table('role');
...
Film->table('film');
Film->columns(All => qw/id title rating/);
Film->has_many(stars => [ Role => 'actor' ]);
- or download this
$film = Film->search(title => 'Jaws');
$film->stars;
- or download this
$stars = Film->search(title => 'Jaws')->stars;