You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-database/sqlite.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -690,10 +690,10 @@ To delete a row, simply select the desired row and click the **Delete** toolbar
690
690
{%highlightcstabtitle="GridController.cs"%}
691
691
692
692
/// <summary>
693
-
///Update a existing data item from the data collection.
693
+
///Remove a specific data item from the data collection.
694
694
/// </summary>
695
-
/// <paramname="value">It contains the updated record detail which is need to be updated.</param>
696
-
/// <returns>Returns void.</returns>
695
+
/// <paramname="value">It contains the specific record detail which is need to be removed.</param>
696
+
/// <return>Returns void.</return>
697
697
publicvoidRemove(CRUDModel<Orders>value)
698
698
{
699
699
//Create query to remove the specific from database by passing the primary key column value.
@@ -862,7 +862,7 @@ When you run the application, the resultant Grid will look like this
862
862
863
863
## Binding data from SQLite Server using CustomAdaptor
864
864
865
-
ThissectiondescribesstepbystepprocesshowtoretrievedatafromaMicrosoftSQLServerusing [CustomAdaptor](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/connecting-to-adaptors/custom-adaptor) and bind it to the Syncfusion ASP.NET MVC Grid.
865
+
ThissectiondescribesstepbystepprocesshowtoretrievedatafromaSQLiteServerusing [CustomAdaptor](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/connecting-to-adaptors/custom-adaptor) and bind it to the Syncfusion ASP.NET MVC Grid.
0 commit comments