DeleteAll Method (EntLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method deletes one or more entity link records from the Ent_Link table, as specified by the filter parameters. Passing no filter parameters will delete all entity link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal parentEntId As Nullable(Of Integer), _
ByVal childEntId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim parentEntId As Nullable(Of Integer)
Dim childEntId As Nullable(Of Integer)
EntLink.DeleteAll(sessionId, parentEntId, childEntId)
public static void DeleteAll(
int sessionId,
Nullable<int> parentEntId,
Nullable<int> childEntId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- parentEntId
- Optional filter parameter. Holds the ID of the parent entity that is being deleted.
- childEntId
- Optional filter parameter. Holds the ID of the child entity that is being deleted.