I use ReadMultiple function to retrieve filtered data from Navision service as below.
var customers = postedInvService.ReadMultiple(filtercustomers.ToArray(), CustomerParams.bookmarkKey, -10);
This works fine. But my requirement is to first sort from a specific column and get the records. How to give the specific column in order to sort records?