InsertMergeAction.Columns Property

 

Applies To: SQL Server 2016 Preview

Gets a list of columns of the target table in which to insert data.

Namespace:   Microsoft.SqlServer.TransactSql.ScriptDom
Assembly:  Microsoft.SqlServer.TransactSql.ScriptDom (in Microsoft.SqlServer.TransactSql.ScriptDom.dll)

Syntax

public IList<ColumnReferenceExpression> Columns { get; }
public:
property IList<ColumnReferenceExpression^>^ Columns {
    IList<ColumnReferenceExpression^>^ get();
}
member Columns : IList<ColumnReferenceExpression> with get
Public ReadOnly Property Columns As IList(Of ColumnReferenceExpression)

Property Value

Type: System.Collections.Generic.IList<ColumnReferenceExpression>

A list of columns of the target table in which to insert data.

See Also

InsertMergeAction Class
Microsoft.SqlServer.TransactSql.ScriptDom Namespace

Return to top