Help for this page

Select Code to Download


  1. or download this
    line 255 > my @pk_values = $self->_attrs($self->primary_columns);
    line 265 > UNIVERSAL::can($_ => 'id') and $_ = $_->id for @pk_values;
    
  2. or download this
    UNIVERSAL::can($_ => 'id') and $_ = $_->id for grep { defined $_ } @pk
    +_values;