The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyModel8::MyModel1::dbix_custom::table1;
use MyModel8::MyModel1 -base;

has join => sub {
  my $self = shift;
  
  my $alias = 'dbix_custom.table2_alias';
  $alias =~ s/\./_/g;
  
  return ["left join dbix_custom.table2 $alias on dbix_custom.table1.key1 = $alias.key1"];
};


1;