共用方式為


ExpressionNode.SerializeNodeWithResult 方法

Serializes the expression node to a text string.

命名空間:  Microsoft.SqlServer.Management.Dmf
組件:  Microsoft.SqlServer.Dmf (在 Microsoft.SqlServer.Dmf.dll 中)

語法

'宣告
<STraceConfigurationAttribute(SkipAutoTrace := True)> _
Public Shared Function SerializeNodeWithResult ( _
    node As ExpressionNode _
) As String
'用途
Dim node As ExpressionNode 
Dim returnValue As String 

returnValue = ExpressionNode.SerializeNodeWithResult(node)
[STraceConfigurationAttribute(SkipAutoTrace = true)]
public static string SerializeNodeWithResult(
    ExpressionNode node
)
[STraceConfigurationAttribute(SkipAutoTrace = true)]
public:
static String^ SerializeNodeWithResult(
    ExpressionNode^ node
)
[<STraceConfigurationAttribute(SkipAutoTrace = true)>]
static member SerializeNodeWithResult : 
        node:ExpressionNode -> string
public static function SerializeNodeWithResult(
    node : ExpressionNode
) : String

參數

傳回值

型別:System.String
A String value that contains the serialized expression node in text format.

範例

C#

attr = new ExpressionNodeAttribute(pi.Name);
cnst = ExpressionNode.ConstructNode(adapter.GetPropertyValue (pi.Name));
expr = new ExpressionNodeOperator(OperatorType.EQ, attr, cnst);
bool res = (bool)expr.Evaluate(adapter);
string xmlstr = ExpressionNode.SerializeNodeWithResult(expr);

請參閱

參考

ExpressionNode 類別

Microsoft.SqlServer.Management.Dmf 命名空間