On 5/21/15 3:25 PM, Russ wrote:
I have a query I am running where sqlalchemy is throwing this exception:

Exception: can't locate strategy for <class 'sqlalchemy.orm.properties.ColumnProperty'> (('lazy', 'joined'),)

What causes this is the addition of this joinedload_all option to a query (q):

q = q.options(sa.orm.joinedload_all("defined_items.child_product.number"))

The intent of adding that is to try and avoid emitting sql when accessing foo.defined_items[x].child_product.number, as there are many defined_items.

There are several other joined loads on this query that don't have an issue. Any ideas on what would be causing this particular problem?
nope. I'd need a complete, self-contained and succinct example I can run, thanks.




--
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 sqlalchemy+unsubscr...@googlegroups.com <mailto:sqlalchemy+unsubscr...@googlegroups.com>. To post to this group, send email to sqlalchemy@googlegroups.com <mailto:sqlalchemy@googlegroups.com>.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

--
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 sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to