ActionOnDataDelete 枚举
Enumerates all actions that can be taken when replicating DELETE statements that do not result in a conflict.
命名空间: Microsoft.SqlServer.Replication.BusinessLogicSupport
程序集: Microsoft.SqlServer.Replication.BusinessLogicSupport(在 Microsoft.SqlServer.Replication.BusinessLogicSupport.dll 中)
语法
声明
Public Enumeration ActionOnDataDelete
用法
Dim instance As ActionOnDataDelete
public enum ActionOnDataDelete
public enum class ActionOnDataDelete
type ActionOnDataDelete
public enum ActionOnDataDelete
成员
成员名称 | 说明 | |
---|---|---|
RejectDelete | The delete is rejected and not propagated by the replication process. | |
AcceptDelete | The delete is accepted and propagated by the replication process as usual. | |
ConvertDeleteToUpdate | 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. |