Share via


SqlSyncTableProvisioning.FilterColumns Property

Gets the list of columns that were added by using AddFilterColumn.

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

Syntax

'Declaration
Public ReadOnly Property FilterColumns As Collection(Of DbSyncColumnDescription)
    Get
'Usage
Dim instance As SqlSyncTableProvisioning
Dim value As Collection(Of DbSyncColumnDescription)

value = instance.FilterColumns
public Collection<DbSyncColumnDescription> FilterColumns { get; }
public:
property Collection<DbSyncColumnDescription^>^ FilterColumns {
    Collection<DbSyncColumnDescription^>^ get ();
}
member FilterColumns : Collection<DbSyncColumnDescription>
function get FilterColumns () : Collection<DbSyncColumnDescription>

Property Value

Type: System.Collections.ObjectModel.Collection<DbSyncColumnDescription>
A list of DbSyncColumnDescription objects that includes the columns that were added by using AddFilterColumn.

Remarks

When a filter column is specified as part of the filter clause, it must be in this list or change enumeration will fail.

See Also

Reference

SqlSyncTableProvisioning Class

Microsoft.Synchronization.Data.SqlServer Namespace

Other Resources

How to: Filter Data for Database Synchronization (SQL Server)