DbSyncTableProgress::BatchedDeletesRetried Property

Gets or sets the number of delete operations that were retried during a synchronization session in which changes were batched.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

public:
property int BatchedDeletesRetried {
	int get ();
	void set (int value);
}

Property Value

Type: System::Int32
The number of delete operations that were retried during a synchronization session in which changes were batched.

Deletes are retried for batches because of the ordering of primary key and foreign key deletes. If a foreign key delete does not exist in a current or earlier batch, the corresponding primary key delete fails. Failed deletes are retried after all batches are applied.

Show: