I have a table called NameTable in my Azure Mobile Service. When I make the below mentioned calls in my client app (WP8 app using the Mobile Services SDK):
I found that this was not enough. You need to decorate your Azure Mobile Service controller method with the [EnableQuery] attribute as follows:
[EnableQuery]
[EnableQuery(PageSize=1000)] public IQueryable GetOneThousandRecords() { return Query() }