The delegate called to indicate whether a record should be included in the synchronization SQL script.

Namespace:  RedGate.SQLDataCompare.Engine
Assembly:  RedGate.SQLDataCompare.Engine (in RedGate.SQLDataCompare.Engine.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Function SelectionDelegate ( _
	synchronizationRecord As SynchronizationRecord _
) As Boolean
C#
public delegate bool SelectionDelegate(
	SynchronizationRecord synchronizationRecord
)
Visual C++
public delegate bool SelectionDelegate(
	SynchronizationRecord synchronizationRecord
)

Parameters

synchronizationRecord
Type: RedGate.SQLDataCompare.Engine..::.SynchronizationRecord
The record to include.

Field Value

true if the record is to be included; false otherwise.

See Also