linq-to-rest

LINQ Provider to RESTful service

I'm writing a custom LINQ provider to a RESTful service. Some of the calls in the service return summary headers, including total number of records, pagesize, and the page of the return. I need clean a way to return this data. Given this query: var foo = from x in ctx.MyQueryableThingie select x; The "foo" variable above b...