OnTime Extension SDK Documentation
OnTime.Extensions.SDK Namespace / VehicleQuery Class / Where Method / Where(VehicleColumn,Object) Method
The Schema column to search against.
The values to search for in the given column.



In This Topic
    Where(VehicleColumn,Object) Method
    In This Topic
    Retrieves all Vehicle objects from the relative table that match the value in the given column.
    Syntax
    'Declaration
     
    
    Public Overloads Function Where( _
       ByVal column As Schema.VehicleColumn, _
       ByVal value As Object _
    ) As IList(Of Vehicle)
    'Usage
     
    
    Dim instance As VehicleQuery
    Dim column As Schema.VehicleColumn
    Dim value As Object
    Dim value As IList(Of Vehicle)
     
    value = instance.Where(column, value)

    Parameters

    column
    The Schema column to search against.
    value
    The values to search for in the given column.

    Return Value

    A list of Vehicle objects.
    Requirements

    Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11, Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022

    See Also