Open apollo13 opened 1 month ago
Given the models:
class Parent(models.Model): x = models.TextField() class Child(models.Model): fk = ForeignKey(Parent)
it would be nice if:
Table(auto__model=Child, auto__include=['fk__x'])
would automatically use select_related
select_related
Given the models:
it would be nice if:
would automatically use
select_related