GetAll Method (Dir)
- Last UpdatedMar 17, 2026
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal entId As Nullable(Of Integer), _
ByVal seqNo As Nullable(Of Integer), _
ByVal directory As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim entId As Nullable(Of Integer)
Dim seqNo As Nullable(Of Integer)
Dim directory As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = Dir.GetAll(entId, seqNo, directory, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> entId,
Nullable<int> seqNo,
string directory,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- entId
- Optional filter parameter. Holds the ID of an entity.
- seqNo
- Optional filter parameter. Holds a sequence number.
- directory
- Optional filter parameter. Holds a directory name, without the final backslash (\).
- lastEditBy
- Optional filter parameter. Holds the ID of a user who created or last updated a directory record.
- lastEditAt
- Optional filter parameter. Holds the date and time when a directory record was created or last updated.
Return Value
Returns a DataSet that contains all the records in the Dir 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 |
|---|---|
|
ent_id |
An integer that is the ID of the entity with which the directory is associated. |
|
seq_no |
An integer that is the sequence number with which the directory is associated. |
|
ent_name |
A string that is the name of the entity with which the directory is associated, from the Ent table. |
|
directory |
A string that is the directory name. |
|
last_edit_comment |
A string that is comments about why the record was created 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. |