Re: Django Philosophy and Queries

2020-06-11 Thread Integr@te System
Hi Yves, zen! Nice. On Thu, Jun 11, 2020, 9:27 PM Yves de Champlain wrote: > Hi > > I am wondering at some ways one can write a query in Django. Let's say for > example : > > Whatever.objects.filter(fk_object_id=fk_object_id) > Whatever.objects.filter(fk_object_id=fk_object.id) >

Django Philosophy and Queries

2020-06-11 Thread Yves de Champlain
Hi I am wondering at some ways one can write a query in Django. Let's say for example : Whatever.objects.filter(fk_object_id=fk_object_id) Whatever.objects.filter(fk_object_id=fk_object.id) Whatever.objects.filter(fk_object=fk_object) and I could add to that list fk_object__id and