For the next person:

I was able to get around this by doing the following:

* do not eagerload any of the relations, probably best to keep them out of 
the identity map altogether
* use the sql expressions api to handle any migrations/work

    dbSession.execute(
        model.core.Foo.__table__\
        .update()\

    dbSession.execute(
        model.core.Foo.__table__\
        .delete()\



-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to