DeleteAll Method (LotAttrDefault)
- Last UpdatedNov 06, 2025
- 1 minute read
This DeleteAll()method deletes multiple records from the Lot_Attr_Default table. Note: This is considered to be an advanced method and must be used with care. Calling this methods with all parameters set to null will cause all the data in the table to be deleted. Whenever possible, use the Delete methods rather than the DeleteAll method
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal rowId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim rowId As Nullable(Of Integer)
LotAttrDefault.DeleteAll(sessionId, rowId)
public static void DeleteAll(
int sessionId,
Nullable<int> rowId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- rowId
Optional filter parameter. Holds the ID of a row that is being deleted.