I seem to be having a bit of a problem with the depth parameter to select_related.
If I have only simple relationships, i.e. only three tables involved linked by a simple foreign key chain it all *seems* to work OK. I get the right data in both model instances with just the one query issued to the database. So if I do Booking.objects.selected_related(depth=1).filter(...) I get all the right data. However, if I have a much more complex set of models with many FK chains to different models I get the *wrong* data in some of the model instances if I use the depth parameter. I.e. I get the title data from the Customer model appearing in the description field in the Activity model! If I omit the select_related it all works as expected, but with lots of queries. If I use select_related, but omit he depth parameter, it all works OK, but I get a much larger query. Does anyone know of any problems with the depth parameter? I'm sorry if this is a bit vague, but it only seems to happen on complex relationships and I haven't been able to get a simple enough standalone case together yet. I'm working on it... Thanks, Gary. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---