'Declaration
Public Overloads Shadows Function Where( _ ByVal filter As Filter _ ) As IList(Of Customer)
'Usage
Dim instance As CustomerQuery Dim filter As Filter Dim value As IList(Of Customer) value = instance.Where(filter)
public new IList<Customer> Where( Filter filter )
public: new IList<Customer^>^ Where( Filter^ filter )
Parameters
- filter
- The Filter object to apply to the query.
Return Value
A list of Customer objects.