You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Range<T> doesn't include null values, it generates only GTE (>=) and LTE (<=) comparison. So null values don't match these arithmetic comparison because they're not greater or lesser, they're just NULL.
The text was updated successfully, but these errors were encountered:
By the way, I got some feedbacks about including nulls in range query. There is a way to include nulls in your query:
Overriding Range!
Following class will solve this problem. But it's not a best practise so it'll not be inlcuded in AutoFilterer library by default. You can create in your project and use if you really need.
Problem
By default,
Range<T>
doesn't include null values, it generates only GTE (>=
) and LTE (<=
) comparison. So null values don't match these arithmetic comparison because they're not greater or lesser, they're just NULL.The text was updated successfully, but these errors were encountered: