Hi!!
I have a "IndicatorGroups" table(with two columns: id, name). And i have
another table to to do the relation between two groups(with three columns:
id, idgroupcontainer, idgroupcontained).
And when I am going to do the mapper:
mappers['groupgroups'] = mapper(GroupGroups, tables['groupgroups'],
properties = {
'idindicatorgroupcontainer' :
relation(IndicatorGroups,
primaryjoin=sql.and_(tables['indicatorgroups'].c.idindicatorgroup==tables['groupgroups'].c.idindicatorgroupcontainer)),'idindicatorgroupcontained'
: relation(IndicatorGroups, primaryjoin=sql.and
_(tables['indicatorgroups'].c.idindicatorgroup==tables['groupgroups'].c.idindicatorgroupcontained)),
},allow_column_override=True)
This is well done or I have to put like secondaryjoin one of them??
Thanks a lot
--
Lur Ibargutxi
[EMAIL PROTECTED]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---