GetAll Method (CharCategoryLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The GetAll() method retrieves one or more characteristic category link records from the Char_Category_Link table, as specified by the filter parameters. Passing no filter parameters will retrieve all characteristic category link records from the table.
'Declaration
Public Shared Function GetAll( _
ByVal categoryId As Nullable(Of Integer), _
ByVal charId As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim categoryId As Nullable(Of Integer)
Dim charId As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = CharCategoryLink.GetAll(categoryId, charId, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> categoryId,
Nullable<int> charId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- categoryId
- Optional. Holds the ID of the category linked.
- charId
- Optional. Holds the ID of the characteristic 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.
Return Value
Returns a DataSet that contains all the records in the Char_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. |
|
char_id |
An integer that is the unique ID of the characteristic. |
|
char_name |
A string that is the name of the characteristic. |
|
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 the record. |
|
last_edit_at |
A datetime that indicates when the record was added. |