is it possible to sort a Datalist/ComponentSet by an calculated/virtual/aggregated col?
I have a DataList containing events having a StartDate and EndDate. Now i want to sort the list by duration of the event (shortest to longest).
In SQL i would do:
... ORDER BY DATEDIFF(EndDate, StartDate) ASC
How to do that with silverstripe ORM
$list = Event::get()->sort('????');
An additional column containing a new Field Duration and filling this field in onAfterWrite-hooks is not preferred.
Is this possible ?
Robert
DataList::sort
doesn't do any escaping, so any valid ORDER BY clause will work fine.