FilterBy<T>.AddChildFilter method (1 of 3)
public void AddChildFilter(FilterBy filter)
See Also
- class FilterBy<T>
- namespace Amica
FilterBy<T>.AddChildFilter method (2 of 3)
Adds a nested filter.
public FilterBy AddChildFilter(string propertyName, Operator op, object? value,
Connector connector = Connector.And)
| parameter | description |
|---|---|
| propertyName | property name |
| op | operator |
| value | value to compare |
| connector | logical connector to the next filter at the same level |
See Also
- enum Operator
- enum Connector
- class FilterBy<T>
- namespace Amica
FilterBy<T>.AddChildFilter<TProperty> method (3 of 3)
Adds a nested filter.
public FilterBy AddChildFilter<TProperty>(Expression<Func<T, TProperty>> expression, Operator op,
object? value, Connector connector = Connector.And)
| parameter | description |
|---|---|
| TProperty | target property |
| expression | |
| op | operator |
| value | value to compare |
| connector | logical connector to the next filter on the same level |
See Also
- enum Operator
- enum Connector
- class FilterBy<T>
- namespace Amica