File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-database Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -859,7 +859,7 @@ public List<Orders> GetOrderData()
859
859
{
860
860
Connection .Open ();
861
861
862
- // Dapper automatically handles mapping to your Order class.
862
+ // Dapper automatically handles mapping to your orders class.
863
863
List < Orders > orders = Connection .Query <Orders >(queryStr ).ToList ();
864
864
return orders ;
865
865
}
@@ -1113,7 +1113,7 @@ In the code example below, paging a custom data source can be achieved by utiliz
1113
1113
{% highlight cs tabtitle = " GridController.cs" % }
1114
1114
1115
1115
/// <summary >
1116
- /// Processes the DataManager request to perform paging operation operation .
1116
+ /// Processes the DataManager request to perform paging operation.
1117
1117
/// </summary >
1118
1118
/// <param name =" DataManagerRequest" >Contains the details of the data operation requested.</param >
1119
1119
/// <returns >Returns a JSON object with the paginated data along with the total record count.</returns >
@@ -1215,8 +1215,6 @@ In this scenario, the inline edit `Mode` and [Toolbar](https://help.syncfusion.c
1215
1215
insertUrl : " https://localhost:xxxx/Grid/Insert" ,
1216
1216
updateUrl : " https://localhost:xxxx/Grid/Update" ,
1217
1217
removeUrl : " https://localhost:xxxx/Grid/Remove" ,
1218
- // Enable batch URL when batch editing is enabled.
1219
- batchUrl : " https://localhost:xxxx/Grid/BatchUpdate" ,
1220
1218
});
1221
1219
grid .dataSource = dataManager ;
1222
1220
}
You can’t perform that action at this time.
0 commit comments