Feature Request: Option to automatically include additional "pages" from OData sources
If the feed contains a "link rel next" (either in the XML or JSON) element - it would be extremely nice to be able to bring the entire recordset into LINQPad as a single result set. Maybe this is through an extension method (or LINPad.Utility) so I could write something like:
var results = MyRemoteEntity.Where(e => e.Type == 2).LoadAllRecords();
This would necessitate the query being returned as an IEnumerable or similar I imagine, but that would be fine.
Thoughts?
var results = MyRemoteEntity.Where(e => e.Type == 2).LoadAllRecords();
This would necessitate the query being returned as an IEnumerable or similar I imagine, but that would be fine.
Thoughts?