Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linqpad result limitation of 10000 rows

Tags:

linqpad

How do i increase the limitation of 10000 rows in linqpad to get more result rows. My query returns approximately 45000 rows. I tried editing the RoamingUserOptions.xml but the changes are reverted back to original state. Also used the Results to data grid option but no luck. Can anyone help me out??

like image 323
Swapnil Avatar asked Jan 16 '23 08:01

Swapnil


1 Answers

As Cory pointed out, in "Results to Grid" mode, LINQPad will give you all rows - or throw an OutOfMemoryException.

The most likely reason for getting fewer is that the OData server is configured with a limit on how many it will return per query.

like image 50
Joe Albahari Avatar answered Apr 06 '23 17:04

Joe Albahari