GetByKey Method (GrpEntLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified group/entity link record from the 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 = GrpEntLink.GetByKey(grpId, entId)
Parameters
- grpId
- Required. Holds the ID of the user group that identifies the record to be retrieved.
- entId
- Required. Holds the ID of the entity.
Return Value
Returns a DataSet that contains the DataRow of the specified group/entity link record in the Grp_Ent_Link table. If no matching record for the specified group/entity link record is found, an empty DataSet is returned.