diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md index 83e3925934..424295d215 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md @@ -556,6 +556,8 @@ public IActionResult Delete(int key) ``` ![ODataV4Adaptor-Delete-record](../images/adaptors/ODataV4Adaptor/odatav4-adaptor-delete-record.png) +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/ODataV4Adaptor_EJ2Core). + ## Odata with custom url The Syncfusion ODataV4 adaptor extends support for calling customized URLs to accommodate data retrieval and CRUD actions as per your application's requirements. However, when utilizing a custom URL with the ODataV4 adaptor, it's essential to modify the routing configurations in your application's route configuration file to align with your custom URL. You can invoke the custom URL by the following methods in the `DataManager`. diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md index f4c168cd59..a663d85a18 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md @@ -407,4 +407,6 @@ app.MapControllers(); **Step 7:** Run the Project: -Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. \ No newline at end of file +Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. + +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/RemoteSaveAdaptor_EJ2Core). \ No newline at end of file diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md index b9368bae49..c752e65ff4 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md @@ -617,6 +617,8 @@ public void Remove([FromBody] CRUDModel deletedRecord) ![UrlAdaptor CRUD operations](../images/adaptors/url-adaptors/adaptor-crud-operation.gif) +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/UrlAdaptor_EJ2Core). + **Single method for performing all CRUD operations** Using the `crudUrl` property, the controller action mapping URL can be specified to perform all the CRUD operation at server-side using a single method instead of specifying separate controller action method for CRUD (insert, update and delete) operations. diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md index 7d9511c6a4..2a65a960e1 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md @@ -245,6 +245,8 @@ app.MapControllers(); Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebApiAdaptor_EJ2Core). + ![WebApiAdaptor](../images/adaptors/webapiAdaptors/adaptor.gif) ## Handling Searching Operation @@ -581,4 +583,6 @@ public void Delete(int key) } ``` -![WebApiAdaptor CRUD operations](../images/adaptors/webapiAdaptors/adaptor-crud-operation.gif) \ No newline at end of file +![WebApiAdaptor CRUD operations](../images/adaptors/webapiAdaptors/adaptor-crud-operation.gif) + +You can find the complete sample for the WebApiAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebApiAdaptor_EJ2Core) link. \ No newline at end of file diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md index 7fc0912857..6b7643ca4a 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md @@ -778,4 +778,6 @@ if (batchOperation.deleted != null) } ``` -![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif) \ No newline at end of file +![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif) + +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebMethodAdaptor_Core). \ No newline at end of file