vote up 0 vote down star

In first version we can use custom table for ManyToManyField with parameter through=MyModel. MyModel should include foreign keys. But I want to use generic foreign key:

content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')

content object as foreign key.

How can I do it?

flag
What exactly are you trying to achieve? – drozzy May 26 at 19:02

1 Answer

vote up 0 vote down

I think your best bet here is to use your own intermediary table/model, with its own generic foreign keys and either writing a custom manager or method to retrieve the information you want. The current implementation of ManyToManyField doesn't have this functionality, and you'll probably struggle to get it to work as such.

Definately should file a ticket if there isn't one there already to see what the django developers think should be done regarding this situation though. :)

link|flag

Your Answer

Get an OpenID
or

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