If I have a self servicing collection i.e.:
CountryCollection(0).States
Can I assign a SortClause to the states before iterating thorugh it.
i.e.
CountryCollection(0).States.SortClause = MySortClause?
When I do this, the SortClause doesn't take effect. Rather, I need to call GetMulti with a sort?
Any way to avoid this? It just seems cleaner if I can assign the SortClause directly.
Thanks!