or

public class ProductSample{ public string Identification { get; set; } public string CategoryId { get; set; } public string Name { get; set; } public string Description { get; set; } public string Image { get; set; }}public IEnumerable<ProductSample> GetAll(){ return new List<ProductSample>() { new ProductSample() { Identification = "1", CategoryId = "cat1", Description = "test", Image = "test", Name = "Sample" } };}$(document).ready(function () { var crudServiceBaseUrl = "http://localhost:1867/api", dataSource = new kendo.data.DataSource({ transport: { read: { url: crudServiceBaseUrl + "/product", contentType: "application/json; charset=utf-8", dataType: "json" }, update: { url: crudServiceBaseUrl + "/product/", dataType: "json", type: "PUT" }, destroy: { url: function (o) { return crudServiceBaseUrl + "/product/" + o.Identification; }, dataType: "json", type: "DELETE" } }, schema: { model: { id: "Identification", fields: { Identification: { type: "string" }, CategoryId: { type: "string" }, Name: { type: "string" }, Description: { type: "string" }, Image: { type: "string" } } } } }); var grid = $("#grid").kendoGrid({ dataSource: dataSource, columns: [ { field: "Identification", title: "Identification" }, { field: "CategoryId", title: "Category Id" }, { field: "Name", title: "Name" }, { field: "Description", title: "Description" }, { field: "Image", title: "Image" }, { command: ["edit", "destroy"] }], editable: "inline" });});<h2>Products</h2><div id="grid"></div>@section Scripts { @Scripts.Render("~/Scripts/Products.js")}