GetByKey Method (JobExecStorageExecLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified job execution/storage execution link record from the Job_Exec_Storage_Exec_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal entId As Integer, _
ByVal storageEntId As Integer _
) As DataSet
'Usage
Dim entId As Integer
Dim storageEntId As Integer
Dim value As DataSet
value = JobExecStorageExecLink.GetByKey(entId, storageEntId)
public static DataSet GetByKey(
int entId,
int storageEntId
)
Parameters
- entId
- Required. Holds the ID of the entity that identifies the record to be retrieved.
- storageEntId
- Required. Holds the ID of the storage entity that identifies the record to be retrieved.
Return Value
Returns a DataSet that contains the DataRow of the specified job execution/storage execution link in the Job_Exec_Storage_Exec_Link table. If no matching record for the specified job execution/storage execution link is found, an empty DataSet is returned.