GetAll Method (FolderItemOperEntLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The GetAll() method retrieves one or more link records from the Folder_Item_Oper_Ent_Link table, as specified by the filter parameters.
'Declaration
Public Shared Function GetAll( _
ByVal processId As String, _
ByVal operId As String, _
ByVal entId As Nullable(Of Integer), _
ByVal itemId As String, _
ByVal verId As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim processId As String
Dim operId As String
Dim entId As Nullable(Of Integer)
Dim itemId As String
Dim verId As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = FolderItemOperEntLink.GetAll(processId, operId, entId, itemId, verId, lastEditBy, lastEditAt)
public static DataSet GetAll(
string processId,
string operId,
Nullable<int> entId,
string itemId,
string verId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- processId
- Optional filter parameter. Holds the ID of a process.
- operId
- Optional filter parameter. Holds the ID of an operation.
- entId
- Optional filter parameter. Holds the ID of an entity.
- itemId
- Optional filter parameter. Holds the ID of an item.
- verId
- Optional filter parameter. Holds the ID of a folder version.
- lastEditBy
- Optional filter parameter. Holds the ID of a user who added or last updated this type of record.
- lastEditAt
- Optional filter parameter. Holds a date/time when this type of record was added or last updated.
Return Value
Returns a DataSet that contains the link records in the Folder_Item_Oper_Ent_Link table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
| Column Name | Description |
|---|---|
| process_id | A string that is the process ID. |
| oper_id | A string that is the operation ID. |
| ent_id | An integer that is the entity ID. |
| item_id | A string that is the item ID. |
| ver_id | A string that is the folder version. |
| last_edit_comment | A string that contains comments about why the record was added or changed. |
| last_edit_by | A string that is the ID of the user who added or last updated this record. |
| last_edit_at | A datetime that specifies when the record was added or last updated. |