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