Y asked for the same thing a few days ago in��
http://forum.world.st/Multiple-sorting-helper-td4770613.html
Something like:
sorter := MultipleSortCriteria new��
�� �� �� �� �� �� �� ��add: #lastName;��
�� �� �� �� �� �� �� ��add: [:each | each personalInfo age ] ascending: false.��
aCollection asSortedCollection: sorter.��
you could add something like:
sorter := MultipleSortCriteria new��
�� �� �� �� �� �� �� ��add: #lastName;��
�� �� �� �� �� �� �� ��add: #firstName ascending: false nullsFirst: true.��
aCollection asSortedCollection: sorter.��
Regards!