SqlSyncAdapterBuilder.QuoteSuffix Property
Specifies the right delimiter (such as a right square bracket) that is used for database object names, such as tables and columns.
Namespace: Microsoft.Synchronization.Data.Server
Assembly: Microsoft.Synchronization.Data.Server (in Microsoft.Synchronization.Data.Server.dll)
Syntax
'Declaration
Public Property QuoteSuffix As String
Get
Set
'Usage
Dim instance As SqlSyncAdapterBuilder
Dim value As String
value = instance.QuoteSuffix
instance.QuoteSuffix = value
public string QuoteSuffix { get; set; }
public:
property String^ QuoteSuffix {
String^ get ();
void set (String^ value);
}
member QuoteSuffix : string with get, set
function get QuoteSuffix () : String
function set QuoteSuffix (value : String)
Property Value
Type: System.String
The delimiter, such as a right square bracket.
Remarks
In some cases, database object names are delimited, such as [TableName] or [ColumnName]. If you specify delimited object names for any of the adapter builder properties, specify delimiters by using QuotePrefix and QuoteSuffix.