CreateListFromFilter Method (Language)
- Last UpdatedNov 06, 2025
- 1 minute read
The CreateListFromFilter() method creates a list of language objects populated with all rows in the specified table that match the filter criteria (parameters).
'Declaration
Public Shared Function CreateListFromFilter( _
ByVal langId As Nullable(Of Integer), _
ByVal stringId As Nullable(Of Integer), _
ByVal grpId As Nullable(Of Integer), _
ByVal value As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As BindingList(Of Language)
'Usage
Dim langId As Nullable(Of Integer)
Dim stringId As Nullable(Of Integer)
Dim grpId As Nullable(Of Integer)
Dim value As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As BindingList(Of Language)
value = Language.CreateListFromFilter(langId, stringId, grpId, value, lastEditBy, lastEditAt)
public static BindingList<Language> CreateListFromFilter(
Nullable<int> langId,
Nullable<int> stringId,
Nullable<int> grpId,
string value,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- langId
- Optional filter parameter. Holds the ID of a language.
- stringId
- Optional filter parameter. Holds the ID of a language string.
- grpId
- Optional filter parameter. Holds the ID of a language string group.
- value
- Optional filter parameter. Holds the value of a language string.
- lastEditBy
- Optional filter parameter. Holds the user who added or last changed a record.
- lastEditAt
- Optional filter parameter. Holds the date/time when a record was added or last edited.
Return Value
Returns a list of all rows in the table that match the specified filter criteria.