vote up 2 vote down star
1

Hi all,

I'm using the SQLAlchemy Python ORM in a Pylons project. I have a class "Project" which has a one to many relationship with another class "Entry". I want to do a query in SQLAlchemy that gives me all of the projects which have one or more entries associated with them. At the moment I'm doing:

[project for project in Session.query(Project) if len(project.entries)>0]

which I know isn't ideal, but I can't figure out how to do a filter that does what I require (e.g. Session.query(Project).filter(Project.entries.exists())).

Any ideas?

flag

78% accept rate

1 Answer

vote up 3 vote down check

Project.entries.any() should work.

link|flag
as in, Session.query(Project).filter(Project.entries.any()) – Alabaster Codify Jan 19 at 22:12
Works great, thanks a lot! – wxs Jan 19 at 23:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.