'Declaration
Public Overloads Function Where( _ ByVal filter As Filter, _ ByVal orderBy As Schema.ContactColumn _ ) As IList(Of Customer.Contact)
'Usage
Dim instance As ContactQuery Dim filter As Filter Dim orderBy As Schema.ContactColumn Dim value As IList(Of Customer.Contact) value = instance.Where(filter, orderBy)
public IList<Customer.Contact> Where( Filter filter, Schema.ContactColumn orderBy )
public: IList<Customer.Contact^>^ Where( Filter^ filter, Schema.ContactColumn 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 Contact objects.