Django GenericRelation doesn't save related object's id - is this a bug or am I doing it wrong?
- by pinkeen
I have a model with a generic relation (call it A), when creating an instance of this object I pass an instance of another model (call it B) as the initializer of the content_object field (via kwargs of the constructor).
If I don't save B before creating A then when saving A the content_object_id is saved to the db as NULL. If I save B before…