FullTextPredicate.Columns Property

 

Applies To: SQL Server 2016 Preview

Gets a list of the columns that are used in the function.

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 the columns that are used in the function.

See Also

FullTextPredicate Class
Microsoft.SqlServer.TransactSql.ScriptDom Namespace

Return to top