I have a WCF DataSerice OPeration wich exposes Businesses and Customers.
In the server side I sort each business's Customers by LastName, this way:
List<Customers> orderedCustomers = business.Customers.OrderBy(c=> c.LastName).ToList<Customers>()
business.Customers.Clear()
foreach (Customers customer in orderedCustomers )
business.Customers.Add(customer )
And in the client side (asyncronously, in Silverlight), I Expand each business´s customers like this:
Context.BeginExecute<Business>(new Uri(serviceurl + BeginGetAllBusinessData&$expand=Cutomers, UriKind.Relative), GettingBusinessDataCompleted, Context);
Mi issue is:The customers in businesses are not sorted in client side (they are in server side). It happens the same with any field I choose for the OrderBy. Loos like serialization chosses its own order. I´d like to sort them in server side.
Am I missing something???
Thanks in advance.