How can I populate 4 different JQUER (JSON ) grids without making 4 different calls to the database.

How can I populate 4 different JQUER (JSON ) grids without making 4 different calls to the database.

 Hello,

I am new to learning JQUERY. I am using MVC and LINQ along with JQUERY.

I have 4 different JSON Grids and making calls to the controller to populate the data for these grids.

Like this: jQuery("#ReferredList").jqGrid({
                url: '/PGR/TitleApplications/TitleApplicationsForCurrentUserListData',

In my Controller I am using LINQ to get the data. The problem is that the data in these grids is almost same and I do not want to make calls to database 4 times. I want to store the data in some List or dictionary object and then make a call from the JSON grid to these dictionary objects. How can I achieve this.