GetAll Method (GrpPrivLink)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal grpId As Nullable(Of Integer), _
ByVal privId As Nullable(Of Integer), _
ByVal privValue As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim grpId As Nullable(Of Integer)
Dim privId As Nullable(Of Integer)
Dim privValue As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = GrpPrivLink.GetAll(grpId, privId, privValue, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> grpId,
Nullable<int> privId,
Nullable<int> privValue,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- grpId
- Optional filter parameter. Holds the ID of a group.
- privId
- Optional filter parameter. Holds a privilege ID.
- privValue
- Optional filter parameter. Holds the privilege value for a group.
- lastEditBy
- Optional filter parameter. Holds the name of the user who added or last changed a group privilege link record.
- lastEditAt
- Optional filter parameter. Holds a date/time of when a group privilege link record was added or last changed.
Return Value
Returns a DataSet that contains the records in the Grp_Priv_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 |
|---|---|
|
grp_id |
An integer that is the ID of the group. |
|
priv_id |
An integer that is the ID of the privilege. |
|
grp_desc |
A string that is the description of the group from the grp_name.grp _desc column linked to this group. |
|
priv_desc |
A string that is the description of the privilege from the priv.priv_desc column linked to this group. |
|
priv_value |
An integer that is the privilege value for this group. |
|
last_edit_comment |
A string that contains comments about why the record was 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 is the date/time when the record was added or last updated. |