GetAll Method (CharAttrLink)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal charId As Nullable(Of Integer), _
ByVal attrId As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim charId As Nullable(Of Integer)
Dim attrId As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = CharAttrLink.GetAll(charId, attrId, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> charId,
Nullable<int> attrId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- charId
- Optional. Holds the ID of the characteristic linked.
- attrId
- Optional. Holds the ID of the attribute 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_Attr_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.
attr_id - An Integer which identifies the attribute.
attr_desc - A String which holds the description of the attribute.
predefined - A Boolean flag which specifies whether the attribute must be assigned from a predefined set of values.
data_type - An integer which specifies the data type of the attribute.
entry_type - An integer which specifies the type of entry to allow for this attribute.
visible_in_queue - A Boolean flag which specifies whether the attribute must be visible in the queue of jobs.
visible_in_inv - A Boolean flag which specifies whether the attribute must be visible in inventory.
last_edit_comment - A String which contains comments about why the char_attr_link record was changed.
last_edit_by - A String which contains the ID of the user who created or last modified this char_attr_link record.
last_edit_at - A DateTime value which contains when the char_attr_link record was created or last modified.