GetAll Method (ItemCategoryLink)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal categoryId As Nullable(Of Integer), _
ByVal itemId As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim categoryId As Nullable(Of Integer)
Dim itemId As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = ItemCategoryLink.GetAll(categoryId, itemId, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> categoryId,
string itemId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- categoryId
- Optional filter parameter. Holds the ID of the category.
- itemId
- Optional filter parameter. Holds the ID of the item.
- 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 Item_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_name |
A string that is the name of the category. |
|
category_id |
An integer that is the ID of the category. |
|
item_display |
A string that is the display string for the item. The display string is based on the Item Display system attribute (attr_id = 210).
|
|
item_id |
A string that is the ID of the item. |
|
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. |
|
row_id |
An integer that is the unique row identifier of the record. |