assoc proxy example uses bi-directional relation w/o backrefs

Issue #1191 resolved
jek created an issue
mapper(User, users_table, properties={
    'user_keywords': relation(UserKeyword)
})
mapper(Keyword, keywords_table)
mapper(UserKeyword, userkeywords_table, properties={
    'user': relation(User),
    'keyword': relation(Keyword),
})

check into that and likely change User/UserKeyword to be a single relation w/ backref

Comments (2)

  1. Log in to comment