On Fri, Jun 27, 2008 at 2:44 PM, MuTPu4 <[EMAIL PROTECTED]> wrote:

> I have table wordforms and WordformMapping associated with it. Bi-
> directional self-relation is expressed by using association table with
> attributes named "infinitives" and "forms". I am using Elixir for
> mapping definition so I cannot access association table with it's
> columns explicitly.

FWIW, you can... Assuming the following class:

class A(Entity):
    aa = ManyToMany('A')

A.aa.property.secondary gets you to the association table

-- 
Gaƫtan de Menten
http://openhex.org

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to