Honza Král wrote:
>> -----------------------------------------------------------------
>> class Book(models.Model):
>>      ....
>>
>> class BookStat(models.Model):
>>      book = models.OneToOneField(Song, related_name='stats')
>>      avg_rating = models.FloatField(max_digits=2, decimal_places=1)
>>      ...
>> -----------------------------------------------------------------
> 
> those two models aren't related, so even if you do select_related()
> book_stat still wouldn't get joined in...
> How do you want to sort Books by BookStats when there is no relation
> between them? Or is there something I am missing?

Bad edit from my side... The model should have read:

book = models.OneToOneField(Book, related_name='stats')


  - bram

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