</div>
<div class="slide">
- <h1>using many_to_many</h1>
- <pre>#!/usr/bin/perl
-
+ <h1>Using many_to_many</h1>
+ <pre>#!perl
use Foo::Schema;
-
-my $author_model = Foo::Schema->resultset('Authors');
-my $author = $author_model->search({
+my $schema = Foo::Schema->connect(...);
+my $author_rs = $schema->resultset('Authors');
+my $author = $author_model->search({
name => 'Douglas Adams',
})->single;
$author->add_to_books({