Condividi tramite


Proprietà ExpressionNode

Gets or sets the type of expression that the condition uses.

Spazio dei nomi  Microsoft.SqlServer.Management.Dmf
Assembly:  Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)

Sintassi

'Dichiarazione
<SfcIgnoreAttribute> _
Public Property ExpressionNode As ExpressionNode
    Get
    Set
'Utilizzo
Dim instance As Condition
Dim value As ExpressionNode

value = instance.ExpressionNode

instance.ExpressionNode = value
[SfcIgnoreAttribute]
public ExpressionNode ExpressionNode { get; set; }
[SfcIgnoreAttribute]
public:
property ExpressionNode^ ExpressionNode {
    ExpressionNode^ get ();
    void set (ExpressionNode^ value);
}
[<SfcIgnoreAttribute>]
member ExpressionNode : ExpressionNode with get, set
function get ExpressionNode () : ExpressionNode
function set ExpressionNode (value : ExpressionNode)

Valore proprietà

Tipo: Microsoft.SqlServer.Management.Dmf. . :: . .ExpressionNode
A ExpressionMode object value that specifies the type of expression that the condition uses.

Osservazioni

This property points to the root node of the tree that contains the expression. The expression is assigned to the condition by calling the Parse(String) that parses the expression string.

Esempi

C#

Condition c = new Condition(ps, conditionName);
c.Facet = facet;
c.ExpressionNode = exprNode;
c.Create();

VB

Dim c As Condition
c = New Condition(ps, conditionName)
c.Facet = facet
c.ExpressionNode = exprNode
c.Create()