Skip to content

Commit 42c9a89

Browse files
Update sqlite.md
1 parent 122dbb8 commit 42c9a89

File tree

1 file changed

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

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -690,10 +690,10 @@ To delete a row, simply select the desired row and click the **Delete** toolbar
690690
{% highlight cs tabtitle="GridController.cs" %}
691691

692692
/// <summary>
693-
/// Update a existing data item from the data collection.
693+
/// Remove a specific data item from the data collection.
694694
/// </summary>
695-
/// <param name="value">It contains the updated record detail which is need to be updated.</param>
696-
/// <returns>Returns void.</returns>
695+
/// <param name="value">It contains the specific record detail which is need to be removed.</param>
696+
/// <return>Returns void.</return>
697697
public void Remove(CRUDModel<Orders> value)
698698
{
699699
//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
862862

863863
## Binding data from SQLite Server using CustomAdaptor
864864

865-
This section describes step by step process how to retrieve data from a Microsoft SQL Server using [CustomAdaptor](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/connecting-to-adaptors/custom-adaptor) and bind it to the Syncfusion ASP.NET MVC Grid.
865+
This section describes step by step process how to retrieve data from a SQLite Server using [CustomAdaptor](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/connecting-to-adaptors/custom-adaptor) and bind it to the Syncfusion ASP.NET MVC Grid.
866866
867867
**1.** To create a simple Grid, the procedure is explained in the above-mentioned topic on [Connecting Syncfusion ASP.NET MVC Grid to an API service](##connecting-syncfusion-aspnet-mvc-grid-to-an-api-service)
868868

@@ -1575,10 +1575,10 @@ To perform the delete operation, you need to override the `remove` method of the
15751575
{% highlight cs tabtitle="GridController.cs" %}
15761576

15771577
/// <summary>
1578-
/// Update a existing data item from the data collection.
1578+
/// Remove a specific data item from the data collection.
15791579
/// </summary>
1580-
/// <param name="value">It contains the updated record detail which is need to be updated.</param>
1581-
/// <returns>Returns void.</returns>
1580+
/// <param name="value">It contains the specific record detail which is need to be removed.</param>
1581+
/// <return>Returns void.</return>
15821582
public void Remove(CRUDModel<Orders> value)
15831583
{
15841584
//Create query to remove the specific from database by passing the primary key column value.

0 commit comments

Comments
 (0)