vote up 0 vote down star

I am working on a Django application which contains an Offer model. An Offer instance contains the pricing conditions and points to a product definition. The product model is actually a hierarchy (I have a Television model, a Camcorder model, etc.). So I would like the Offer model to contain a polymorphic (or "generic") association to point to any product.

For now, all I have found is this to use the generic associations in the ContentTypes application. This might do, but I am looking for alternatives, if any.

Thanks for your help.

(one solution per answer please)

flag

71% accept rate

3 Answers

vote up 0 vote down

You might want to have a look at model inheritance.

link|flag
I obviously agree, but could you please spell out the answer to make it truly useful to someone that would be asking it. That way I can +1 it. – Ivan Jan 6 '09 at 14:29
Thanks, but I don't think this is the answer. What I need is to have something like: class Offer(models.Model): product = models.ForeignKey(Product) ... Where Product is an abstract class, and the actual referenced object is an instance of a concrete subclass. Any ideas? – MiniQuark Jan 7 at 9:12
vote up 1 vote down

If you only need to point to "any product," not any model, then the solution is to have a Product model that all products inherit from (i.e. Television and Camcorder are both subclasses of Product), and give your Offer model a ForeignKey to Product.

link|flag
Yes, this is the general idea, but if I do only that, then I have 2 drawbacks: firstly, I cannot use multiple-table inheritance, secondly when I go from an offer to a product, I get a Product instance instead of a Camcorder (or other concrete class) instance. – MiniQuark Jan 7 at 9:16
You can automatically transform a Product instance into an (e.g.) Camcorder instance if you store an FK to the "child" ContentType (Camcorder) at creation time. More discussion at groups.google.com/group/django-users/… – Carl Meyer Jan 10 at 22:49
What do you mean by "I cannot use multiple-table inheritance"? Multiple-table inheritance is how Django implements inheritance from non-abstract base classes (unlike Rails, which does single-table inheritance). Your choices here are inheritance or generic relations; there's no other silver bullet. – Carl Meyer Jan 10 at 22:53
vote up 0 vote down

I am having the same problem but django.db does not seem to directly support this. My problem is even a bit worse because my model have many branching inheritance levels with relationships among them.

Perhaps the base classes, at least the lowest one, will need to have a type tag similar to activerecord (RoR) implementation so, when the object is fetched it can be correctly typed.

I have not yet browsed django.db sources but I think it is not a simple change... I will give it a try, anyway.

link|flag

Your Answer

Get an OpenID
or

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