GetAll Method (EntLink)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal parentEntId As Nullable(Of Integer), _
ByVal childEntId As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim parentEntId As Nullable(Of Integer)
Dim childEntId As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = EntLink.GetAll(parentEntId, childEntId, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> parentEntId,
Nullable<int> childEntId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- parentEntId
- Optional filter parameter. Holds the ID of the parent entity.
- childEntId
- Optional filter parameter. Holds the ID of the child entity.
- lastEditBy
- Optional filter parameter. Holds the name of the user who added or last changed an entity record.
- lastEditAt
- Optional filter parameter. Holds a date/time of when an entity record was added or last changed.
Return Value
Returns a DataSet that contains all the records in the Attr 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 |
|---|---|
|
parent_ent_id |
An integer that ID of the parent entity. |
|
child_ent_id |
An integer that ID of the child entity. |
|
parent_ent_name |
An string that name of the parent entity, from the Ent table. |
|
child_ent_name |
An string that name of the child entity, from the Ent table. |
|
can_sched_jobs |
An flag that indicates whether or not the child entity can schedule jobs, from the Ent table. |
|
can_run_jobs |
An flag that indicates whether or not the child entity can run jobs, from the Ent table. |
|
can_store |
An flag that indicates whether or not the child entity can store inventory, from the Ent table. |
|
can_capture_labor |
An flag that indicates whether or not the child entity can capture labor date, from the Ent table. |
|
can_capture |
An flag that indicates whether or not the child entity can capture utilization data, from the Ent table. |
|
can_do_dnc |
Not used. Will always return False. |
|
can_log_data |
An flag that indicates whether or not the child entity can log data, from the Ent table. |
|
parent_ent_description |
An string that is the description of the parent entity, from the Ent table. |
|
child_ent_description |
An string that is the description of the child entity, from the Ent table. |
|
child_ent_description |
An string that is the description of the child entity, from the Ent table. |
|
last_edit_comment |
A string that is the comment about why the record was added or changed. |
|
last_edit_by |
A string that is the user ID of the user who added or last edited this record. |
|
last_edit_at |
A datetime that identifies when the record was added or last modified. |
|
ent_last_edit_at |
A datetime that identifies when the child entity record was added or last modified, from the Ent table. |