> > >> Correction: Calls to standard relationships DO work fine but I
> > >> have custom
> > >> methods in MyApp::Schema::User that use these relationships and
> > >> they stop
> > >> working:
> > >
> > > Can you show the calling code, please?
>
> Ok, I tried to strip down my schema so that you can have a look at it:
>
> http://www.funkreich.de/files/dbic_wreck.tar.gz

Check out this dump of $user->result_source->schema(). Just by changing
the name given to register_source the class mapping changes
(pay attention to Wreck::Schema::User).

------------------------------------------------------------------
Wreck::Schema->register_source( 'UserMutual' => $source_mutual );
------------------------------------------------------------------
'class_mappings' => {
    'Wreck::Schema::D' => 'D',
    'Wreck::Schema::UserRelation' => 'UserRelation',
    'Wreck::Schema::J' => 'J',
    'Wreck::Schema::C' => 'C',
    'Wreck::Schema::K' => 'K',
    'Wreck::Schema::G' => 'G',
    'Wreck::Schema::A' => 'A',
    'Wreck::Schema::F' => 'F',
    'Wreck::Schema::User' => 'User',
    'Wreck::Schema::M' => 'M',
    'Wreck::Schema::I' => 'I',
    'Wreck::Schema::H' => 'H',
    'Wreck::Schema::E' => 'E',
    'Wreck::Schema::L' => 'L',
    'Wreck::Schema::B' => 'B'
};

------------------------------------------------------------------
Wreck::Schema->register_source( 'MyResultSource' => $source_mutual );
------------------------------------------------------------------
'class_mappings' => {
    'Wreck::Schema::D' => 'D',
    'Wreck::Schema::UserRelation' => 'UserRelation',
    'Wreck::Schema::J' => 'J',
    'Wreck::Schema::C' => 'C',
    'Wreck::Schema::K' => 'K',
    'Wreck::Schema::G' => 'G',
    'Wreck::Schema::A' => 'A',
    'Wreck::Schema::F' => 'F',
    'Wreck::Schema::User' => 'MyResultSource',
    'Wreck::Schema::M' => 'M',
    'Wreck::Schema::I' => 'I',
    'Wreck::Schema::H' => 'H',
    'Wreck::Schema::E' => 'E',
    'Wreck::Schema::L' => 'L',
    'Wreck::Schema::B' => 'B'
};

--Tobias

_______________________________________________
List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class
Wiki: http://dbix-class.shadowcatsystems.co.uk/
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/
Searchable Archive: http://www.mail-archive.com/dbix-class@lists.rawmode.org/

Reply via email to