Interface IDatabaseEditableDataSource

IDatabaseEditableDataSource interface

The object that implements this interface has the ability to accept a layer with the ability to track changes and save them to the database.

public interface IDatabaseEditableDataSource : IDatabaseDataSource

Methods

NameDescription
SubmitChangesAsync(VectorLayer, DbConnection, DbTransaction)Allows you to save accumulated changes to the database.

Remarks

To get a trackable layer, it is need to call the AsTrackableForChanges when configuring the data source and then retrieve the layer via ReadAsync.

See Also