Skip to content

Commit 0de4543

Browse files
committed
Documentation: Attached the Adaptors sample link
1 parent ae78358 commit 0de4543

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,8 @@ public IActionResult Delete(int key)
556556
```
557557
![ODataV4Adaptor-Delete-record](../images/adaptors/ODataV4Adaptor/odatav4-adaptor-delete-record.png)
558558

559+
> You can find the complete sample for the ODataV4Adaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/ODataV4Adaptor_EJ2Core) link.
560+
559561
## Odata with custom url
560562

561563
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`.

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,4 +407,6 @@ app.MapControllers();
407407

408408
**Step 7:** Run the Project:
409409

410-
Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service.
410+
Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service.
411+
412+
> You can find the complete sample for the RemoteSaveAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/RemoteSaveAdaptor_EJ2Core) repository.

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,8 @@ public void Remove([FromBody] CRUDModel<OrdersDetails> deletedRecord)
617617

618618
![UrlAdaptor CRUD operations](../images/adaptors/url-adaptors/adaptor-crud-operation.gif)
619619

620+
> You can find the complete sample for the UrlAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/UrlAdaptor_EJ2Core) link.
621+
620622
**Single method for performing all CRUD operations**
621623

622624
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.

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ app.MapControllers();
245245

246246
Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service.
247247

248+
> 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.
249+
248250
![WebApiAdaptor](../images/adaptors/webapiAdaptors/adaptor.gif)
249251

250252
## Handling Searching Operation
@@ -581,4 +583,6 @@ public void Delete(int key)
581583
}
582584
```
583585

584-
![WebApiAdaptor CRUD operations](../images/adaptors/webapiAdaptors/adaptor-crud-operation.gif)
586+
![WebApiAdaptor CRUD operations](../images/adaptors/webapiAdaptors/adaptor-crud-operation.gif)
587+
588+
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.

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,4 +778,6 @@ if (batchOperation.deleted != null)
778778
}
779779
```
780780

781-
![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif)
781+
![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif)
782+
783+
> You can find the complete sample for the WebMethodAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebMethodAdaptor_Core) link.

0 commit comments

Comments
 (0)