Update Method (GrpLineLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The Update() method updates all columns of the specified group/line link record in the Grp_Line_Link table.
public static void Update(
int sessionId,
int grpId,
int lineId,
bool access,
DBString lastEditComment,
ref DateTime lastEditAt
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- grpId
- Required. Holds ID of the user group.
- lineId
- Required. Holds the ID of the line.
- access
- Required. Holds a flag that, if set to true, specifies that the members of this user group may access this line.
- lastEditComment
- Required. Holds comments that describe why this record is being updated.
- lastEditAt
Required. Holds the date/time when this record was added or last updated, for optimistic concurrency control. The passed value must match the lastEditAt value in the record for the update to succeed.
Output. Holds the datetime value when the record was updated by this called method.