When I execute this:
query = new azure.TableQuery().top(100).where("PartitionKey eq ?", someKey);
Does this guarantee that these 100 results will be returned in order by RowKey? Everything I read leads me to believe that there is a single order of records, and it's by the PartitionKey + RowKey. My own basic tests seem to confirm that. But I can't find any official documentation that comes right out and says it.
I just need to know if I can rely on that, or if it's something that could potentially change.