POD updates
Jess Robinson [Fri, 2 Feb 2007 19:48:53 +0000 (19:48 +0000)]
lib/DBIx/Class/Manual/Cookbook.pod
lib/DBIx/Class/Relationship.pm

index 916b710..8ac6180 100644 (file)
@@ -526,7 +526,7 @@ in the future.
 
 =head2 Many-to-many relationships
 
-This is straightforward using L<DBIx::Class::Relationship::ManyToMany>:
+This is straightforward using L<ManyToMany|DBIx::Class::Relationship/many_to_many>:
 
   package My::DB;
   # ... set up connection ...
index c987bb5..b95867f 100644 (file)
@@ -308,6 +308,11 @@ And, for the reverse relationship, from Role to Actor:
 
   My::DBIC::Schema::Role->many_to_many( actors => 'actor_roles', 'actor' );
 
+To add a role for your actor, and fill in the year of the role in the
+actor_roles table:
+
+  $actor->add_to_roles($role, { year => 1995 });
+
 Many_to_many is not strictly a relationship in its own right. Instead, it is
 a bridge between two resultsets which provide the same kind of convenience
 accessors as true relationships provide. Although the accessor will return a