Skip to main content
.NET 6.0+

IDataStoreServiceAsync Methods

Defines a WCF service contract to asynchronously access data via data store providers (objects that implement the IDataStoreAsync interface).
Name Description
Do(String, Object) Defines a service operation that, when implemented by a class, executes a specified command with specific parameters and returns the operation result. Inherited from IDataStoreService.
DoAsync(String, Object) Asynchronously executes a specified command with specific parameters and returns the operation result.
GetAutoCreateOption() Defines a service operation that, when implemented by a class, returns which operations are performed when a data store is accessed for the first time. Inherited from IDataStoreService.
GetAutoCreateOptionAsync() Asynchronously gets the AutoCreateOption setting used during the first connection to a data store.
ModifyData(ModificationStatement[]) Defines a service operation that, when implemented by a class, updates data in a data store using specified modification statements and returns the operation result. Inherited from IDataStoreService.
ModifyDataAsync(ModificationStatement[]) Uses specified modification statements to asynchronously update data in a data store.
SelectData(SelectStatement[]) Defines a service operation that, when implemented by a class, fetches data from a data store using specified query statements and returns the operation result. Inherited from IDataStoreService.
SelectDataAsync(SelectStatement[]) Uses specified query statements to asynchronously fetch data from a data store.
UpdateSchema(Boolean, DBTable[]) Defines a service operation that, when implemented by a class, updates a data store’s schema according to specified settings and returns the operation result. Inherited from IDataStoreService.
UpdateSchemaAsync(Boolean, DBTable[]) Asynchronously updates a data store’s schema according to specified settings.
See Also