Hi all,

It doesn't do the second filter with those queries:

session.query(User).options(joinedload("channels")).filter(User.id ==
int(userId)).filter(Channel.title !=
"zeptextstuff.txt").order_by(Channel.titleView).first()

or

session.query(User).join(User.channels).filter(User.id ==
int(userId)).filter(Channel.title !=
"zeptextstuff.txt").order_by(Channel.titleView).first()

or

session.query(User).options(joinedload("channels")).filter(and_(User.id
== int(userId), Channel.title !=
"zeptextstuff.txt")).order_by(Channel.titleView).first()

I get a user with a list of sorted channels,  but I also get
"zeptextstuff.txt" channel.

Any clue??

Thanks in advance!

-- 
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 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to