更新
元素 Update
用于从事件中提取数据并将其导入相关的 BAM 活动。
若要使用 Update
元素,必须同时提供列名和类型,以及包含计算结果为单个字符串值的一个或多个 Operation 元素的 Expression 元素。
<ic:Update DataItemName="Name" Type="Type">
<ic:Expression>
<!-- one or more Operation elements -->
</ic:Expression>
</ic:Update>
特性名 | 说明 |
---|---|
ColumnName | BAM 活动检查点名称。 将使用提取的数据对该检查点进行更新。 |
类型 | 检查点的 BAM 数据类型;它必须是以下类型之一: - NVARCHAR -Datetime -Int -浮动 |
表达式不支持 Update
以下操作:
且
等于
在以下示例中, GetContextProperty WF 操作用于检索 EventTime 属性。 此值将存储为 BAM 活动的“StartOrderProcessing”数据项的 DATETIME 类型。
<ic:Update DataItemName="StartOrderProcessing" Type="DATETIME">
<ic:Expression>
<wf:Operation Name="GetContextProperty">
<wf:Argument>EventTime</wf:Argument>
</wf:Operation>
</ic:Expression>
</ic:Update>