Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which is better to use among all of the model inheritance and why? I do not have knowledge about it so I want to know which better, or more useful so that I will know which is I will use for that particular scenario.

  • abstract base classes
  • multi-table inheritance
  • proxy models
share|improve this question
1  
almost certainly depends on your usage. do you have some context? multi-table can really end up shooting you in the foot, so i'd make sure that's required before choosing that path. (inheritance doesn't really play well with databases) – second Feb 9 at 9:59
I'm reading a book and they defined that 3 model inheritance. If I have so many fields that the same they use of course I will use model inheritance. But in my question is which better in your opnion? – catherine Feb 9 at 10:02
It still depends on your usecase. To what extent are the inheriting models related, and to what extent would they be different? Do you want to be able to perform queries on the base model, or just on the inheriting models separately? – Teisman Feb 9 at 11:00
just inheriting it – catherine Feb 9 at 11:58

1 Answer

up vote 1 down vote accepted

Each of these techniques provide different benefits. It really depends on what you need to do.

The best place to start is reading the model inheritance docs.

Abstract base classes

Use these if you're just trying to reduce the amount of code you write. If you know that several fields appear in numerous models then write a base class and inherit it.

Multi-table inheritance

This is useful if you want a concrete base class that can be queried and operated on - for example Base.objects.all() is a bit like seeing Child1.objects.all() and Child2.objects.all() in the same queryset.

Proxy Models

Use proxy models if all the fields are the same across each model. You get one db tuple for each object, but that db tuple can be used to represent either the parent or the proxy. This is quite powerful, and almost certainly the way to go if your fields are the same.

share|improve this answer
But most developers said using multi-table inheritance is a bad thing. But why they add this as model inheritance, if this is bad? – catherine Feb 9 at 12:02
1  
You really need a use case before you can say whether its a good or bad solution. As you rightly point out, the django developers wouldn't have taken the time to implement it if it wasn't ever useful. – Aidan Ewen Feb 9 at 12:51
You have the point – catherine Feb 9 at 13:01

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.