join in django code example
Example 1: django model query join
Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)
Example 2: objects.filter django
>>> Entry.objects.filter(blog_id=4)
Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)
>>> Entry.objects.filter(blog_id=4)