or
@(Html.Kendo().Grid<KendoUIMvcApplication1.Models.MyEntity>(Model) .Name("DefaultGrid").Editable() .Columns( columns => { columns.AutoGenerate(true); columns.Command(command => { command.Edit(); }); }) .DataSource(dataSource => dataSource .Server() .Model(model => model.Id(p => p.Id)) .Create("Create", "Home") .Update("Update", "Home") .Destroy("Delete", "Home")) );@(Html.Kendo().Grid<*what do I put here?*>() .Name("grid") .DataSource(dataSource => dataSource // Configure the grid data source .Ajax() // Specify that ajax binding is used .Read(read => read.Action(...) ) ...more configs...)