DataSourceFilterCompositeBuilder
Methods
And()
Includes And condition to the filter
RETURNS
An instance of for method chaining.
Example
Razor
 
            .DataSource(dataSource => dataSource
                    .Ajax()
                    .Filter(f => f.Add(o => o.Freight).IsLessThan(30).And().IsGreaterThan(10))
            )
             
Or()
Includes Or condition to the filter
RETURNS
An instance of for method chaining.
Example
Razor
 
            .DataSource(dataSource => dataSource
                    .Ajax()
                    .Filter(f => f.Add(o => o.Freight).IsLessThan(30).Or().IsGreaterThan(10))
            )