#14481 closed Cleanup/optimization (fixed)
better documentation of the default m2m "through" class
Reported by: | Jonathan Morgan | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
It would be polite to document somewhere the exact characteristics of the default m2m "through" class. I looked today and could not find that anywhere in the documentation.
Specifically, I think you want something like this in the Model page where it talks about ManyToManyFields:
When you create a ManyToManyField relation without a "through" argument, there is still a "through" class and table created to hold the association.
The class is:
<model_that_declares_field>.<ManyToManyField_name>.through
This is a model instance for a table with three fields:
- id
- <containing_model>_id
- <other_model>_id
This class can be used to query associated records for a given model instance, and can also be used in static methods (like m2m_changed handlers) to query the association table to pull in instances that are associated either with Model A or Model B so that you can process them. The through class for a given association is the class that raises the m2m_changed signal, and so it is the class you need to associate an m2m_changed signal handler with, not the Model that contains the association.
It is also dynamically generated when the Model class that declares the ManyToManyField relation is imported, so you can only access "through" classes associated with a given pair of models after importing the model that declares the ManyToManyField (and you won't be able to access it if you only import the model that is the "other" side of the relation).
Change History (8)
comment:1 by , 14 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 14 years ago
Severity: | → Normal |
---|---|
Type: | → Cleanup/optimization |
comment:6 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Related to but separate from #13586. Let's make sure these two don't end up duplicating each other in content.