Help for this page

Select Code to Download


  1. or download this
    # Tablesetup:
    [user]
    ...
    print $user->firstname; # prints prefetched firstname
    print $user->lastname; # prints prefetched lastname
    print $user->profile_text; # prints lazy-loaded profile_text
    
  2. or download this
    $user = $schema->resultset('User')->find(1);
    print $user->user_contact->firstname;
    print $user->user_contact->lastname;
    print $user->user_profile->profile_text;