Skip to content

Commit c6fc757

Browse files
Update dapper.md
1 parent dc97c92 commit c6fc757

File tree

1 file changed

+2
-4
lines changed
  • ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-database

1 file changed

+2
-4
lines changed

ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-database/dapper.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ public List<Orders> GetOrderData()
859859
{
860860
Connection.Open();
861861

862-
// Dapper automatically handles mapping to your Order class.
862+
// Dapper automatically handles mapping to your orders class.
863863
List<Orders> orders = Connection.Query<Orders>(queryStr).ToList();
864864
return orders;
865865
}
@@ -1113,7 +1113,7 @@ In the code example below, paging a custom data source can be achieved by utiliz
11131113
{% highlight cs tabtitle="GridController.cs" %}
11141114

11151115
/// <summary>
1116-
/// Processes the DataManager request to perform paging operation operation.
1116+
/// Processes the DataManager request to perform paging operation.
11171117
/// </summary>
11181118
/// <param name="DataManagerRequest">Contains the details of the data operation requested.</param>
11191119
/// <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
12151215
insertUrl: "https://localhost:xxxx/Grid/Insert",
12161216
updateUrl: "https://localhost:xxxx/Grid/Update",
12171217
removeUrl: "https://localhost:xxxx/Grid/Remove",
1218-
// Enable batch URL when batch editing is enabled.
1219-
batchUrl: "https://localhost:xxxx/Grid/BatchUpdate",
12201218
});
12211219
grid.dataSource = dataManager;
12221220
}

0 commit comments

Comments
 (0)