Jqgrid可以接受的数据源格式通常是local.json.string等,而我们通过MVC Controller查询数据库(Linq)通常转化为tolist(),例如: public object Res(string Sort = null, int OrderBy = 3, int PageNumber = 0, int PageSize = 0) { var stu = (from p in db.Student orderby p.Age select p).Skip((PageNum…