GetByKey Method (StdOperEntLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified standard operation/entity link record from the Std_Oper_Ent_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal operId As String, _
ByVal entId As Integer _
) As DataSet
'Usage
Dim operId As String
Dim entId As Integer
Dim value As DataSet
value = StdOperEntLink.GetByKey(operId, entId)
Parameters
- operId
- Required. Holds the ID of the operation whose entity link is being retrieved.
- entId
- Required. Holds the ID of the entity whose operation link is being retrieved.
Return Value
Returns a DataSet that contains the DataRow of the specified standard operation/entity link in the Std_Oper_Ent_Link table. If no matching record for the specified standard operation/entity link is found, an empty DataSet is returned.