GetAll Method (CauseGrpCategoryLink)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal categoryId As Nullable(Of Integer), _
ByVal causeGrpId As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim categoryId As Nullable(Of Integer)
Dim causeGrpId As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = CauseGrpCategoryLink.GetAll(categoryId, causeGrpId, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> categoryId,
Nullable<int> causeGrpId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- categoryId
- Optional. Holds the ID of the category linked.
- causeGrpId
- Optional. Holds the ID of the cause group linked.
- lastEditBy
- Optional. Holds the ID of a user who added the link record.
- lastEditAt
- Optional. Holds the datetime when a link record was added. This filter retrieves all records with a datetime that is greater than or equal to the value specified.
Return Value
Returns a DataSet that contains all the records in the Cause_Grp_Category_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 |
|---|---|
|
category_id |
An integer that is the unique ID of the category. |
|
cause_grp_id |
An integer that is the unique ID of the cause group. |
|
cause_grp_desc |
A string that is the description of the cause group. |
|
display_seq |
An integer that is the order of display for this cause group when displaying all the cause groups in the user interface. |
|
last_edit_comment |
A string that contains comments about why the record was added. |
|
last_edit_by |
A string that is the ID of the user who added this record. |
|
last_edit_at |
A datetime that specifies when the record was added. |