我正在使用 mvc4。在我的一个页面上,它有 Kendo Grid。我想每页显示 5 行。但是,如果我使用的是 mvc 助手,我使用纯 javascript 来做这件事没有问题。我迷路了,在网上找不到任何样品。
这是我的 JavaScript 代码。
<script language="javascript" type="text/javascript">
$(document).ready(function () {
$("#grid").kendoGrid({
dataSource: {
type: "json",
serverPaging: true,
pageSize: 5,
transport: { read: { url: "Products/GetAll", dataType: "json"} },
schema: { data: "Products", total: "TotalCount" }
},
height: 400,
pageable: true,
columns: [
{ field: "ProductId", title: "ProductId" },
{ field: "ProductType", title: "ProductType" },
{ field: "Name", title: "Name" },
{ field: "Created", title: "Created" }
],
dataBound: function () {
this.expandRow(this.tbody.find("tr.k-master-row").first());
}
});
});
现在如果我使用 mvc 助手
@(Html.Kendo().Grid(Model)
.Name("Grid") //please help me to finish the rest
更新:
添加操作代码。
[HttpPost]
public ActionResult GetAll([DataSourceRequest]DataSourceRequest request, int id)
{
var products= ProductService.GetAll(id);
return Json(products.ToDataSourceResult(request));
}
服务层的GetAll方法:
public IQueryable<Product> GetAll(int id)
{
var products= ProductRepository.Get(p => p.Id== id && p.IsActive == true, null, "ProductionYear")
.OrderBy(o => o.Name); //.ToList();
return Product.Select(p => new ProductVM()
{
Name = p.Name,
ProductionYear= p.ProductionYear.Year.ToString()
Id = p.Id
}).AsQueryable();
}
现在,如果我运行该应用程序,我将收到以下错误:
“LINQ to Entities 无法识别 'System.String ToString()' 方法,并且该方法无法转换为存储表达式。”}
在 GetAll 方法中,我注释掉了“ToList()”。如果我使用 ToList,一切正常。但我将查询所有行,而不是只查询该页面所需的那些行。