Skip to content

Commit

Permalink
Readme update - removed redundant method
Browse files Browse the repository at this point in the history
  • Loading branch information
base33 committed Dec 5, 2015
1 parent 42a0200 commit 43bc46f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ Extension method / operator | Description | Example
== (operator) | Whether the field contains the value | r => r.Name == "foo"
!= (operator) | Whether the field does not contains the value | r => r.Name != "foo"
Contains(term) | Whether the field contains the value | r => r.Name.Contains("foo")
Contains(term, fuzzy) | Whether the field contains the value with Fuzzy enabled | r => r.Name.Contains("foo", 0.8)
ContainsAny(term) | Whether the field contains any of the values | r => r.Name.ContainsAny("foo", "bar", "etc")
ContainsAll(term) | Whether the field contains all of the values | r => r.Name.ContainsAll("foo", "bar", "etc")
All these support NOT (!)
Expand Down

0 comments on commit 43bc46f

Please sign in to comment.