DeleteAll Method (EntAttr)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more entity attribute records from the Entity_Attr table, as specified by the filter parameters. Passing no filter parameters will remove all entity attribute records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal entId As Nullable(Of Integer), _
ByVal attrId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim entId As Nullable(Of Integer)
Dim attrId As Nullable(Of Integer)
EntAttr.DeleteAll(sessionId, entId, attrId)
public static void DeleteAll(
int sessionId,
Nullable<int> entId,
Nullable<int> attrId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- entId
- Optional filter parameter. Holds the ID of an entity for which an attribute(s) is being deleted.
- attrId
- Optional filter parameter. Holds the ID of an attribute that is being deleted from its entity(s).