Skip to content

Commit 0fb95d4

Browse files
991769: Updated the UG content and samples for Editing in Blazor DataGrid
1 parent cd1fad1 commit 0fb95d4

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

blazor/datagrid/persisting-data-in-server.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,38 @@ documentation: ug
99

1010
# Persisting data in the server in Blazor DataGrid
1111

12-
The Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor DataGrid supports persisting data changes to a server or database using RESTful web services. All CRUD operationsCreate, Read, Update, and Deleteare managed by the [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html), which enables seamless communication with server-side data sources. This ensures that any changes made in the Grid UI are reliably synchronized with the backend.
12+
The Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor DataGrid supports persisting data changes to a server or database using RESTful web services. All CRUD operations Create, Read, Update, and Delete are managed by the [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html), which enables seamless communication with server-side data sources. This configuration ensures that changes made in the Grid UI are reliably synchronized with the backend.
1313

14-
## Supported Adaptors
14+
**Supported Adaptors**
1515

16-
Syncfusion<sup style="font-size:70%">&reg;</sup> provides multiple adaptors to integrate with various server protocols and APIs. Each adaptor handles data operations differently based on the backend service architecture.
16+
The Syncfusion<sup style="font-size:70%">&reg;</sup> provides multiple adaptors to integrate the DataGrid with various server protocols and APIs. Each adaptor works with [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html) to manage data operations and automatically trigger CRUD actions based on Grid interactions. Backend services must implement appropriate endpoints to handle these requests.
1717

18-
**Using UrlAdaptor**
18+
**UrlAdaptor**
1919

20-
The [UrlAdaptor](https://blazor.syncfusion.com/documentation/data/adaptors#url-adaptor) connects the DataGrid to remote services via HTTP endpoints. It is suitable for custom APIs that implement their own logic for handling `CRUD` operations.
20+
The [UrlAdaptor](https://blazor.syncfusion.com/documentation/data/adaptors#url-adaptor) connects the DataGrid to remote services via HTTP endpoints. This adaptor is suitable for custom APIs that implement their own logic for handling CRUD operations.
2121

2222
- Supports manual implementation of server-side logic.
2323
- Ideal for RESTful services with custom endpoints.
2424

25-
For detailed guidance, refer to the [UrlAdaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/url-adaptor).
25+
For implementation details, refer to the [UrlAdaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/url-adaptor).
2626

2727
**ODataV4Adaptor**
2828

2929
The [ODataV4Adaptor](https://blazor.syncfusion.com/documentation/data/adaptors#odatav4-adaptor) is designed for services that implement the **OData V4** specification. It provides enhanced support for advanced querying and metadata handling.
3030

3131
- Suitable for modern **OData V4** services.
3232
- Enables efficient data manipulation and retrieval.
33-
For detailed guidance, refer to the [ODataV4Adaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/odata-v4-adaptor).
33+
34+
For implementation details, refer to the [ODataV4Adaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/odatav4-adaptor).
3435

3536
**WebApiAdaptor**
36-
The [WebApiAdaptor](https://blazor.syncfusion.com/documentation/data/adaptors#web-api-adaptor) is optimized for Web APIs that follow the **OData** protocol. It extends the capabilities of the `ODataAdaptor` and simplifies integration with ASP.NET Web API services.
37+
38+
The [WebApiAdaptor](https://blazor.syncfusion.com/documentation/data/adaptors#web-api-adaptor) is optimized for Web APIs that follow the OData protocol. It extends the capabilities of the ODataAdaptor and simplifies integration with ASP.NET Web API services.
3739

3840
- Automatically maps CRUD operations to Web API endpoints.
3941
- Useful for applications built with ASP.NET Core Web API.
4042

41-
For detailed guidance, refer to the [WebApiAdaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/web-api-adaptor).
43+
For implementation details, refer to the [WebApiAdaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/web-api-adaptor).
4244

4345
**GraphQLAdaptor**
4446

@@ -47,11 +49,10 @@ The [GraphQLAdaptor](https://blazor.syncfusion.com/documentation/data/adaptors#g
4749
- Supports flexible and efficient data querying.
4850
- Ideal for modern APIs using GraphQL syntax.
4951

50-
For detailed guidance, refer to the [GraphQLAdaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/graphql-adaptor).
51-
52+
For implementation details, refer to the [GraphQLAdaptor documentation](https://blazor.syncfusion.com/documentation/datagrid/connecting-to-adaptors/graphql-adaptor).
5253

5354

5455
N>
55-
* All adaptors work with SfDataManager to manage data operations.
56+
* All adaptors work with [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html) to manage data operations.
5657
* CRUD operations are automatically triggered based on Grid interactions.
5758
* Backend services must implement appropriate endpoints to handle requests.

0 commit comments

Comments
 (0)