We have created a partitioned collection with MyID as partition Key in azure DocumentDB and populated data in to the collection , but when we try to run a query with order by it fails,
Sample Query,
SELECT *
FROM Families f
JOIN c IN f.children
WHERE f.MyId = 123
ORDER BY f.address.city ASC
Please suggest on the same.