'Declaration
Public Function New( _ ByVal filterPath As Expression(Of Func(Of T,Object)), _ ByVal filterOperation As FilterOperation, _ ByVal value As Object _ )
'Usage
Dim filterPath As Expression(Of Func(Of T,Object)) Dim filterOperation As FilterOperation Dim value As Object Dim instance As New FilterUnaryExpression(Of T)(filterPath, filterOperation, value)
public FilterUnaryExpression<T>( Expression<Func<T,object>> filterPath, FilterOperation filterOperation, object value )
Parameters
- filterPath
- The path of the data item to which the filter will be applied.
- filterOperation
- The filter operation.
- value
- The value to be filtered.