DataSourceFilterCompositeBuilder
Methods
And()
Includes And condition to the filter
Example
.DataSource(dataSource => dataSource
.Ajax()
.Filter(f => f.Add(o => o.Freight).IsLessThan(30).And().IsGreaterThan(10))
)
Or()
Includes Or condition to the filter
Example
.DataSource(dataSource => dataSource
.Ajax()
.Filter(f => f.Add(o => o.Freight).IsLessThan(30).Or().IsGreaterThan(10))
)