GetAll Method (AttrSet)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal attrId As Nullable(Of Integer), _
ByVal possibleValue As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date), _
ByVal rowId As Nullable(Of Integer) _
) As DataSet
'Usage
Dim attrId As Nullable(Of Integer)
Dim possibleValue As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim rowId As Nullable(Of Integer)
Dim value As DataSet
value = AttrSet.GetAll(attrId, possibleValue, lastEditBy, lastEditAt, rowId)
public static DataSet GetAll(
Nullable<int> attrId,
string possibleValue,
string lastEditBy,
Nullable<DateTime> lastEditAt,
Nullable<int> rowId
)
Parameters
- attrId
- Optional filter parameter. Holds the ID of an attribute.
- possibleValue
- Optional filter parameter. Holds the possible value of an attribute.
- lastEditBy
Optional filter parameter. Holds the ID of the user who added or last updated an attribute set record.
- lastEditAt
- Optional filter parameter. Holds the date/time when an attribute set record was added or last updated.
- rowId
- Optional filter parameter. Holds the row ID of an attribute set record to be retrieved.
Return Value
Returns a DataSet that contains all the records in the Attr_Set 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. The DataSet is ordered by the display_seq column values.
|
Column Name |
Description |
|---|---|
|
attr_id |
An integer that is the attribute ID. |
|
possible_value |
A string that is the possible value of the attribute. |
|
attr_desc |
A string that is the attribute description, from the Attr table. |
|
display_seq |
An integer that is the display sequence value for the possible value of an attribute. This number determines the order of possible values when they are listed for the attribute in a drop-down list in the user interface. From the Attr table. |
|
last_edit_comment |
A string that contains comments about why the record was added or updated. |
|
last_edit_by |
A string that is the ID of the user who added or last updated this record. |
|
last_edit_at |
A date/time that indicates when the record was added or last updated. |
|
row_id |
An integer that is the unique row identifier of the record. |