DbGetGroupEntries
Gets an array of <GroupMember> from a DigaSystem content database.

After reading the metadata into a variable you can access the metadata properties, e.g. "g.Reserve1" what the position represents.
Properties

Input
Name | Description |
---|---|
GroupId | The reference number (id) of the group |
Table | A DigaSystem table id, e.g. "vm-sql-digas\galileo". Often taken from workflow argument Arg_TableId. |
Output
Name | Description |
---|---|
GroupMembers | A variable of type David.Dpe.ContentSerivce.GroupMember which is used to return the group metadata as an array of <GroupMember>. |
Also see Working With Variables
Example
Drag and drop the activity into a workflow.

Define a result variable with name g of type David.Dpe.ContentService.GroupMember as an array GroupMember[] (also see Working With Variables). Enter the variable name g into the activity field which specifies the variable for the result GroupMembers.
Add a WriteLine activity to output the EntryId or the position of the entry inside a group.
Example1: "EntryId: " + string.Join(",",g.Select(Function(n) n.EntryId))
Example2: "GroupRefId: " + string.Join(",",g.Select(Function(n) n.reserve2))
