I have a self-hosted WCF Data Service (OData) that I'm developing. As I've been testing this, I noticed that most client applications I'm using (Excel, Browsers, etc) timeout on a request to pull a particular query in my service. There are about 140k records in the query. Applications just crash after a long query.
Right now, the only work around is to do client-side paging but if I can simply increase the limit then I would be most grateful for the answer.
Note that my Entity Model is mapped with database Views and not actual tables, just in case it has a relation with the issue.
Cheers!