How to order a result like this


I have the following entity structure:

TEntityPais

TEntityEstado
  Pais: TEntityPais

TEntityCidade
Estado: TEntityCidade

TEntityBairro
Cidade: TEntityCidade

I want to retrieve all TEntityBairro

Manager.Find<TEntityBairro>

However I want to that it gets in the order:
Pais + Estado + Cidade + Bairro

I have found any example similar on the documentation.

Is it possible?

Have you checked the documentation topic about ordering results: http://www.tmssoftware.com/business/aurelius/doc/web/index.html?ordering_results.htm ? There is even an example there showing how to order by subproperties.

Sorry, I have tried reading this (I read that before) and can´t extract from there how to solve this problem.

What code did you try, based on that example?