Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
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)
Syntax
'Declaration
Public Property BatchedDeletesRetried As Integer
Get
Set
'Usage
Dim instance As DbSyncTableProgress
Dim value As Integer
value = instance.BatchedDeletesRetried
instance.BatchedDeletesRetried = value
public int BatchedDeletesRetried { get; set; }
public:
property int BatchedDeletesRetried {
int get ();
void set (int value);
}
member BatchedDeletesRetried : int with get, set
function get BatchedDeletesRetried () : int
function set BatchedDeletesRetried (value : int)
Property Value
Type: System.Int32
The number of delete operations that were retried during a synchronization session in which changes were batched.
Remarks
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.