You can only order by database fields. You can pull all records, turn them into a list, and sort them, although that may be inefficient and slow.
Or you can add a database field called name
and fill it in via a post-save hook; then you can sort it using order_by
.