Imagine the following model:
class Parent(Model): ... class Child(Model) father = ForeignKey(Parent) ...
Some parents have chi
Sorry to once again post a link to my blog, but I have written about a technique to simulate select_related on backwards relationships.