Changes between Initial Version and Version 1 of Ticket #35751, comment 4


Ignore:
Timestamp:
Sep 10, 2024, 4:10:52 PM (13 days ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35751, comment 4

    initial v1  
    33> Using a many to many relation for ordering (which is something you shouldn't do?)
    44
    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?
     5Could 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
     7What are you expecting `booking_times__date` to even mean?
Back to Top