I'm trying to use load_only and was able to get a really basic example to 
work.  My problem is that once I try to load one of my hybrid properties, 
it fails.  

This code works for any number of basic Column properties but fails once I 
add the hybrid property:

columns = (Task.msg_id, Task.hybrid_test)

q = (db.session.query(Task).options(load_only(*columns).lazyload('*')))

AttributeError: Neither 'hybrid_property' object nor 'ExprComparator' 
object associated with Task.hybrid_test has an attribute 'property'


Just wondering if I should be able to get this to work if I keep digging or 
post a more thorough code snippet, or is it not possible using this 
approach?

-- 
SQLAlchemy - 
The Python SQL Toolkit and Object Relational Mapper

http://www.sqlalchemy.org/

To post example code, please provide an MCVE: Minimal, Complete, and Verifiable 
Example.  See  http://stackoverflow.com/help/mcve for a full description.
--- 
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 https://groups.google.com/group/sqlalchemy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sqlalchemy/e74e5722-9a21-495a-8e14-a99e5afc861b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to