I followed Getting started with WCF Web API. Everything works well and it supports some of the operators like
?$filter=Name eq 'Ajay'
?$top=4
But when I try other queries like
$filter=substringof('Ajay', Name)
OR
$filter=length(Name) gt 5
It gives following error
The server encountered an error processing the request. See server logs for more details.
But same queries work well with other ODATA services like Netflix. Does WCF Web API support only a limited set of queries, or I am missing something?