GetAll Method (StdOperSpecVer)
- Last UpdatedNov 06, 2025
- 2 minute read
The GetAll() method retrieves one or more records from the Std_Oper_Spec_Ver table, as specified by the filter parameters. Passing no filter parameters will retrieve all records from the table.
'Declaration
Public Shared Function GetAll( _
ByVal operId As String, _
ByVal verId As String, _
ByVal verDate As Nullable(Of Date), _
ByVal verComments As String, _
ByVal preferredVer As Nullable(Of Boolean), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim operId As String
Dim verId As String
Dim verDate As Nullable(Of Date)
Dim verComments As String
Dim preferredVer As Nullable(Of Boolean)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = StdOperSpecVer.GetAll(operId, verId, verDate, verComments, preferredVer, lastEditBy, lastEditAt)
public static DataSet GetAll(
string operId,
string verId,
Nullable<DateTime> verDate,
string verComments,
Nullable<bool> preferredVer,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- operId
- Optional filter parameter. Holds the ID of the standard operation.
- verId
- Optional filter parameter. Holds the ID of the spec revision.
- verDate
- Optional filter parameter. Holds the date when the version was created or last modified, in UTC.
- verComments
- Optional filter parameter. Holds comments for this version.
- preferredVer
- Optional filter parameter. Specifies if this is the preferred version.
- lastEditBy
- Optional filter parameter. Holds the ID of the user who added or last updated the record.
- lastEditAt
- Optional filter parameter. Holds a date/time when the record was added or last edited.