DPE WorkflowSystem 3.x

DbUpdateEntry

Updates entry metadata in a DigaSystem content database. 

DbUpdateEntry.png

Properties

DbUpdateEntry_Properties.png

Input

Name

Description

Table

A DigaSystem table id, e.g. "vm-sql-digas\galileo". Often taken from workflow argument Arg_TableId.

EntryId

A DigaSystem entry id, e.g. 12345. Often taken from workflow argument Arg_EntryId.

Columns

Specifies entry columns (= entry metadata properties) to be updated at design time.

Example:

DbUpdateEntry_Columns.png

DynamicColumns

Allows to specify entry columns to be updated at runtime. Type: IDictionary<string, object>.

Used when you do not know which columns you want to update at design time.

Example:

C#
New Dictionary(Of String, Object) From { { "Title", "My title"}, { "MarkIn", 4000 } }


You can either use Columns or DynamicColumns or both.