'Declaration
Public Overloads Function Where( _ ByVal filters As IList(Of Filter), _ ByVal orderBy As Schema.PaymentColumn _ ) As IList(Of Payment)
'Usage
Dim instance As PaymentQuery Dim filters As IList(Of Filter) Dim orderBy As Schema.PaymentColumn Dim value As IList(Of Payment) value = instance.Where(filters, orderBy)
public IList<Payment> Where( IList<Filter> filters, Schema.PaymentColumn orderBy )
public: IList<Payment^>^ Where( IList<Filter^>^ filters, Schema.PaymentColumn 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 Payment objects.