DeleteAll Method (DataLogGrpEntLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more data log group/entity link records from the Data_Log_Grp_Ent_Link table, as specified by the filter parameters. Passing no filter parameters will remove all data log group/entity link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal grpId As Nullable(Of Integer), _
ByVal entId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim grpId As Nullable(Of Integer)
Dim entId As Nullable(Of Integer)
DataLogGrpEntLink.DeleteAll(sessionId, grpId, entId)
public static void DeleteAll(
int sessionId,
Nullable<int> grpId,
Nullable<int> entId
)
Parameters
- sessionId
Required. Holds the session ID and thus the user who is making this method call.
- grpId
Optional filter parameter. Holds the ID of a data log group that is being linked.
- entId
- Optional filter parameter. Holds the ID of an entity that is being linked.