WCF data service: how to request ALL objects when paging is enabled?

I enabled paging at my service level: config.SetEntitySetPageSize ("*", 25);

Now, when I try to query all my objects at the client level, I get only 25 objects.

How do I get everything? What code should I write?

+4
source share
1 answer

QueryOperationResponse.GetContinuation () is what you are looking for. Sample code to use this loop at http://msdn.microsoft.com/en-us/library/ee358711.aspx

+2
source

All Articles