DynamicExpressions
DynamicExpressions copied to clipboard
How do i filter with comparison
I wanted to achieve this filter with using dynamicexpression
.Where(b => string.Compare(b.Title, nextProduct.Title, StringComparison.OrdinalIgnoreCase) > 0 || (b.Title == nextProduct.Title && b.Id > productFilter.NextProductId))
Please provide me code snippet if you have already.