Update(Int32,Int32,Int32,Boolean,DBString,DateTime) Method
- Last UpdatedNov 06, 2025
- 2 minute read
The Update() method updates all columns of the specified group/entity link record in the Grp_Ent_Link table.
public static void Update(
int sessionId,
int grpId,
int entId,
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.
- entId
- Required. Holds the ID of the entity.
- access
- Required. Holds a flag that, if set to true, specifies that the members of this user group may log onto this entity.
- 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 date/time value when the record was updated by this called method.