Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezanet authored Sep 28, 2021
1 parent 7451ff9 commit 185bf4c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ But for example, if you need to just filter your data without paging or sorting

We can easily create complex queries using parenthesis`()` with AND (`,`) + OR (`|`) operators.

Also, If you don't specify any value after `=` or `!=` operators, gridify search for the `default` and `null` values.
```c#
var gq = new GridifyQuery() { Filter = "Name=" };
// this is equal to :
// Persons.Where(p => p.Name is null || p.Name == string.Empty() )
```

---
## Case-Insensitive search

Expand Down

0 comments on commit 185bf4c

Please sign in to comment.