On Thu, 2007-11-29 at 00:14 -0800, Eratothene wrote:
> > Here's a solution that should give you a list (not a QuerySet) of all
> > the blogs. Don't know if this is best practice though. You can get all
> > blogs of a user with:
> > user.blog_set.all()
> > From this QuerySet you want only these without articles:
> > blogs = []
> > for blog in user.blog_set.all():
> >    #if the blog has no articles
> >    if blog.article_set.all() == Article.objects.none():
> >       blogs.append(blog)
> >
> > Hope it works ;)
> 
> It does work without a doubt.
> But I am looking for mor efficient solution that would not require an
> extra query for every blog. I need to make this with a single query.
> 

You should really just use extra(). There is no point in trying to do it
otherwise if you already know how to do it with the tools provided. If
you need performance, you need to get your hands dirty sometimes. (I
even think that raw SQL is less dirty than endless Q-object-chains and
other DB model trickery because I am already accustomed to reading and
writing SQL...)



-- 
http://spinlock.ch/blog/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to