Hi,
You could create a property on your member entities which will retrieve:
"this.Company.CompanyName"
And fir the CollectionClass set:
SupportsSorting = True;
then: (Members would be an instance of the collectionclass)
Members.Sort("CompanyName",ListSortDirection.Ascending,null);
Maybe this is ineffecient and should be handled different, if please tell me, because I use this, incombination with PrefetchPaths (In this case to prefetch the companies)
greets,
Gab