I have the following Object in memory.
EmployeeEntity.PrSalaryAccountCollection
Each PrSalaryAccount has a PayTypeId. Which relates to a PayTypeEntity with the following fields. (Id, Code, Description, PrintOrder)
Each PrSalaryAccount has a GLAccountId. Which relates to a GLAccountEntity with the follwing fields. (Id, AccountNumber, Description)
When I load my grid with the EmployeeEntity.PrSalaryAccountCollection the users want them sorted in the following order. (All ascending)
PayTypeEntity.PrintOrder
PayTypeEntity.Code
GLAccountEntity.AccountNumber
EmployeeEntity.PrSalaryAccount.Id
Using Self Service.
Thanks
Dan