I have three models, simplified for the example:
class Customer(models.Model): email = models.CharField(max_length=128) class Order(models.Model): custo
Have you looked at using the .extra() method?
.extra()
See the Django QuerySet API.