GetAll Method (RuleGroupLink)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal ruleGroupId As Nullable(Of Integer), _
ByVal ruleId As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim ruleGroupId As Nullable(Of Integer)
Dim ruleId As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = RuleGroupLink.GetAll(ruleGroupId, ruleId, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> ruleGroupId,
Nullable<int> ruleId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- ruleGroupId
- Optional filter parameter. Holds the ID of the rule group.
- ruleId
- Optional filter parameter. Holds the ID of the rule.
- lastEditBy
- Optional filter parameter. Holds the ID of a user who added or last updated this type of record.
- lastEditAt
- Optional filter parameter. Holds a datetime when this type of record was added or last updated.
Return Value
Returns a DataSet that contains all the records in the Rule_Group_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 |
|---|---|
|
rule_group_id |
An integer that is the ID of the rule group is returned. |
|
rule_group_name |
A string that is the name of the rule group is returned. |
|
rule_id |
An integer that is the ID of the rule is returned. |
|
rule_desc |
A string that is the description of the rule is returned. |
|
last_edit_comment |
A string that contains comments about why the record was added or 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 indicates when the record was added or last updated. |