I have a gridview on a page which is populated by a LINQ query in the code behind. Nothing fancy but, does use pagination (using the pageIndex changed event).
All works fine but, ran into a problem when running in our dev environment due to there being alot of data in the DB.
So my question is given that the LINQ is only enumerated on databinding and the gridview has a page size of 20, does the LINQ fetch all of the records each time its databound? and how would you deal with binding the results of a LINQ query to a gridview when dealing with a large number of records?