The Table service layer provides the SelectFields property on the QueryEntitiesOptions, to allow for queries to contain $select. However, when using TableRestProxy.queryEntities, the request will fail when those properties are set:
400 Bad Request: One of the request inputs is not valid.
This appears to be because the request sets this header:
DataServiceVersion: 1.0;NetFx
which is not set when using the Table client layer to make a similar request.
(Edited to remove OrderBy, which is not supported in Azure Table: http://msdn.microsoft.com/en-us/library/dd135725.aspx)
The Table service layer provides the SelectFields property on the QueryEntitiesOptions, to allow for queries to contain $select. However, when using TableRestProxy.queryEntities, the request will fail when those properties are set:
This appears to be because the request sets this header:
which is not set when using the Table client layer to make a similar request.
(Edited to remove OrderBy, which is not supported in Azure Table: http://msdn.microsoft.com/en-us/library/dd135725.aspx)