GetByKey Method (DataLogGrpEntLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified data log group/entity link record from the Data_Log_Grp_Ent_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal grpId As Integer, _
ByVal entId As Integer _
) As DataSet
'Usage
Dim grpId As Integer
Dim entId As Integer
Dim value As DataSet
value = DataLogGrpEntLink.GetByKey(grpId, entId)
Parameters
- grpId
Required. Holds the ID of the data log group that is being linked.
- entId
Required. Holds the ID of the entity that is being linked.
Return Value
Returns a DataSet that contains the DataRow of the specified data log group/entity link in the Data_Log_Grp_Ent_Link table. If no matching record is found, an empty DataSet is returned.
Returns a DataSet that contains the DataRow of the specified data log group/entity link in the Data_Log_Grp_Ent_Link table. If no matching record is found, an empty DataSet is returned.