X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRelationship%2FBase.pm;h=8c2e4fd890faa8526a65e15bf381038043c11435;hb=d1ec2830cc15412c0a99d77b97dc95393af1e66a;hp=b64e455d1639791c189635314e1aa198cf10f1e1;hpb=2c5c07ecc0a7e4e54854aefdd5f3e44cb71cf5e7;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Relationship/Base.pm b/lib/DBIx/Class/Relationship/Base.pm index b64e455..8c2e4fd 100644 --- a/lib/DBIx/Class/Relationship/Base.pm +++ b/lib/DBIx/Class/Relationship/Base.pm @@ -67,7 +67,9 @@ Each key-value pair provided in a hashref will be used as Ced conditions. To add an Ced condition, use an arrayref of hashrefs. See the L documentation for more details. -In addition to standard result set attributes, the following attributes are also valid: +In addition to the +L, +the following attributes are also valid: =over 4 @@ -187,7 +189,7 @@ sub related_resultset { my $query = ((@_ > 1) ? {@_} : shift); my $source = $self->result_source; - my $cond = $source->resolve_condition( + my $cond = $source->_resolve_condition( $rel_obj->{cond}, $rel, $self ); if ($cond eq $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION) { @@ -207,7 +209,7 @@ sub related_resultset { if (ref $_ eq 'HASH') { my $hash; foreach my $key (keys %$_) { - my $newkey = $key =~ /\./ ? "me.$key" : $key; + my $newkey = $key !~ /\./ ? "me.$key" : $key; $hash->{$newkey} = $_->{$key}; } $hash; @@ -397,12 +399,12 @@ sub set_from_related { (ref $cond ? ref $cond : 'plain scalar') ) unless ref $cond eq 'HASH'; if (defined $f_obj) { - my $f_class = $self->result_source->schema->class($rel_obj->{class}); + my $f_class = $rel_obj->{class}; $self->throw_exception( "Object $f_obj isn't a ".$f_class ) unless Scalar::Util::blessed($f_obj) and $f_obj->isa($f_class); } $self->set_columns( - $self->result_source->resolve_condition( + $self->result_source->_resolve_condition( $rel_obj->{cond}, $f_obj, $rel)); return 1; } @@ -468,7 +470,7 @@ B relationships.> =over 4 -=item Arguments: (\@hashrefs | \@objs) +=item Arguments: (\@hashrefs | \@objs), $link_vals? =back @@ -479,6 +481,10 @@ B relationships.> $actor->set_roles(\@roles); # Replaces all of $actor's previous roles with the two named + $actor->set_roles(\@roles, { salary => 15_000_000 }); + # Sets a column in the link table for all roles + + Replace all the related objects with the given reference to a list of objects. This does a C B to remove the association between the current object and all related objects, then calls