Changes between Initial Version and Version 1 of Ticket #17665
- Timestamp:
- Feb 9, 2012, 7:15:05 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17665 – Description
initial v1 15 15 }}} 16 16 17 But if you apply the {{{filter()}} directly to the manager:17 But if you apply the {{{filter()}}} directly to the manager: 18 18 19 {{{Company.objects.filter(membership_set__active=True, membership_set__person=1)}}} 19 {{{ 20 Company.objects.filter(membership_set__active=True, membership_set__person=1) 21 }}} 20 22 21 23 The behaviour is the same as query 2), while it should work like 1).