Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let's say I have following ORM classes (fields removed to simplify):

class Animal(models.Model):
    say = "?"

    def say_something(self):
        return self.say

class Cat(Animal):
    self.say = "I'm a cat: miaow"

class Dog(Animal):
    self.say = "I'm a dog: wuff"

class Animals(models.Model):
    my_zoo = models.ManyToManyField("Animal")

When I add some animals to my zoo:

cat = Cat()
cat.save()
dog = Dog()
dog.save()

animals.my_zoo.add(cat)
animals.my_zoo.add(dog)

for animal in animals.my_zoo.all():
    print animal.say_something()

... I would expect following result:

I'm a cat: miaow, I'm a dog: wuff

but instead, all I've got is the instances of general Animal object, unable to say anything but "?".

How to achieve the true object inheritance and later polymorphism when the object is retreived from db?

share|improve this question
Your code is too oversimplified to tell. – Ignacio Vazquez-Abrams Nov 10 '10 at 18:43

3 Answers

up vote 3 down vote accepted

... I would expect following result:

I'm a cat: miaow, I'm a dog: wuff

In your zoo you have ManyToMany relation on Animal object. That means your zoo.animals.all() will be a list of Animal instances.

When you do cat.save() django will actually create an Animal object and a Cat object. Cat object will have a hidden OneToOne relation to Animal, however they are completely separated objects and Animal doesn't know about your Cat, only the Cat knows about Animal because it is "part" of her.

If you would add a field: species_name to Animal object, then you would be able to recognise your species from Animal object. Otherwise you just cant know if your Animal is a cat or a dog.

You are allowed to add cat to the list of animals however you are expected to understand that in database the animal, not the cat will be added.

If you do know how your database schema looks like, don't expect that django will do magic tricks above RDBMS feasibilities. If you don't understand your database schema I would recommend to read about relational databases first before you go on ORM. Else it just looks weird and featureless.

To solve your issue with django you can read: Generic many-to-many relationships . However dont forget that those "generic" relations just hide complexity into deeper places and that means you will get into bigger trouble if you don't understand what is going under the hood.

To get a deeper understanding of this problem: How to do Inheritance Modeling in Relational Databases ?

share|improve this answer
1  
+1 for a good explanation; Even though I find that adding a species_name is a hack, there is no better way (in fact, I did use this myself). Also, if you ask me, django should do something like that internally, and not make us hit our heads against the keyboard. – Gabi Purcaru Nov 10 '10 at 20:01
Thanks for the answer. I understand how it works, but I was hoping that there is some magic which will do dirty work for me. – edkirin Nov 11 '10 at 7:12

Check out this link about model inheritance, it should help you out.

share|improve this answer

You can access the descendentas via an attribute on the parent class. The attribute's name is the lowercase version of the model's name:

class Animal(models.Model):
    say = "?"

    def say_something(self):
        for animal in ('cat', 'dog'):
            try:
                return getattr(self, animal).say
            except:
                pass
            return self.say
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.