Enum Adaptors
Specifies the data adaptors provided in SfDataManager component.
- BlazorAdaptorDefault. BlazorAdaptor is used to process Enumerable data. It contains methods to process the given collection based on the queries.
- ODataAdaptor OData Adaptor provies ability to consume and manipulate data from OData services.
- ODataV4Adaptor ODatav4 Adaptor provies ability to consume and manipulate data from OData v4 services
- WebApiAdaptor WebApi Adaptor provies ability to consume and manipulate data from WebApi services. This adaptor is targeted to interact with Web API created using OData endpoint, it is extended from ODataAdaptor
- UrlAdaptor URL Adaptor is used when you are required to interact with all kind of remote services to retrieve data.
- RemoteSaveAdaptor Remote Save Adaptor is used for binding JSON data. It interacts with remote services only for CRUD operations.
- CustomAdaptor CustomAdaptor specifies that own data query and manipulation logic has been provided using custom adaptor component extended from DataAdaptor class.
- JsonAdaptor JsonAdaptor is used to process JSON data at the client side. It contains methods to process the given JSON data based on the queries.
- GraphQLAdaptor GraphQLAdaptor provides ability to consume and manipulate data from GraphQL service. It requires setting GraphQLAdaptorOptions in the SfDataManager component.
Namespace: Syncfusion.Blazor
Assembly: Syncfusion.Blazor.dll
Syntax
public enum Adaptors
Fields
| Name | Description |
|---|---|
| BlazorAdaptor | BlazorAdaptor is used to process Enumerable data. It contains methods to process the given collection based on the queries. |
| CustomAdaptor | CustomAdaptor specifies that own data query and manipulation logic has been provided using custom adaptor component extended from DataAdaptor class. |
| GraphQLAdaptor | The |
| JsonAdaptor | JsonAdaptor is used to process JSON data at the client side. It contains methods to process the given JSON data based on the queries. |
| ODataAdaptor | OData Adaptor provies ability to consume and manipulate data from OData services. |
| ODataV4Adaptor | OData v4 Adaptor provies ability to consume and manipulate data from OData v4 services. |
| RemoteSaveAdaptor | Remote Save Adaptor is used for binding JSON data. It interacts with remote services only for CRUD operations. |
| UrlAdaptor | URL Adaptor is used when you are required to interact with all kind of remote services to retrieve data. |
| WebApiAdaptor | WebApi Adaptor provies ability to consume and manipulate data from WebApi services. This adaptor is targeted to interact with Web API created using OData endpoint, it is extended from ODataAdaptor |