ActionOnDataDelete Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates all actions that can be taken when replicating DELETE statements that do not result in a conflict.
public enum class ActionOnDataDelete
public enum ActionOnDataDelete
type ActionOnDataDelete =
Public Enum ActionOnDataDelete
- Inheritance
-
ActionOnDataDelete
Fields
Name | Value | Description |
---|---|---|
RejectDelete | 0 | The delete is rejected and not propagated by the replication process. |
AcceptDelete | 1 | The delete is accepted and propagated by the replication process as usual. |
ConvertDeleteToUpdate | 2 | The delete is rejected, and the change row should be updated on the destination so that it becomes an insert on the source of the original delete. |