Changes between Initial Version and Version 1 of Ticket #35751, comment 4
- Timestamp:
- Sep 10, 2024, 4:10:52 PM (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35751, comment 4
initial v1 3 3 > Using a many to many relation for ordering (which is something you shouldn't do?) 4 4 5 Could you describe wha are you expecting to happen when specifying `order_by(booking_times__date)` if not for each item to be returned multiple times? Are you looking for `order_by(Min("booking_times__date"))` instead? 5 Could you describe wha are you expecting to happen when specifying `order_by("booking_times__date")` if not for each item to be returned multiple times? Are you looking for `order_by(Min("booking_times__date"))` instead? 6 7 What are you expecting `booking_times__date` to even mean?