Hi, do you have an exemple where I can use a MVC Grid View with Stored Procedure where I can pass as a parameter the filter and pagination information.
I found and example but it looks like you retrieve all the data and after that it apply filter and pagination.
I mean this example. This is using a stored procedure but is retrieving all the data.
C#public ActionResult SupportGridPartial() {
StoredProcedureEntities context = new StoredProcedureEntities();
var model = context.SelectSupportTeam();
return PartialView("SupportGridPartial", model);
}
Thanks