Disclaimer: Django newbie here.

I have a join type of model access in one of my views like so:

recent_staff_reviews =
StaffReview.objects.order_by('-last_update').filter(enabled =
True).filter(restaurant__enabled = True)[:4]

where the StaffReview model has a foreign key to the Restaurant model.  So
this produces a join query behind the scenes to get to the enabled field on
the restaurants table (I have seen the queries via a "djangosnippet" I
installed to show the behind-the-scene queries).  But the join query
produced only grabs fields from the review table.  In the template, I access
various parts of the Restaurant model via the review list (so using the
foreign key), like

{% for review in recent_staff_reviews %}
...
review.restaurant.name  ...etc

Doing this results in a new query on the restaurant table for each
restaurant referenced in the review list.  But...the original query already
did the join and could have returned these restaurant fields all in the one
query.  Is there some way to force Django to do this?  Am I structuring my
model query above, or the models themselves, incorrectly (I can post full
models etc if it would help)?

Thanks for any tips.

-Chris

--~--~---------~--~----~------------~-------~--~----~
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