'Declaration
Public Overloads Function Where( _ ByVal filter As Filter, _ ByVal orderBy As Schema.CustomerColumn _ ) As IList(Of Customer)
'Usage
Dim instance As CustomerQuery Dim filter As Filter Dim orderBy As Schema.CustomerColumn Dim value As IList(Of Customer) value = instance.Where(filter, orderBy)
public IList<Customer> Where( Filter filter, Schema.CustomerColumn orderBy )
public: IList<Customer^>^ Where( Filter^ filter, Schema.CustomerColumn orderBy )
Parameters
- filter
- The Filter object to apply to the query.
- orderBy
- The Schema column to sort the results by (ascending).
Return Value
A list of Customer objects.