Skip to content

Commit

Permalink
Document orm.not_in
Browse files Browse the repository at this point in the history
This makes users win a lot of time.
kapouer committed Dec 10, 2014
1 parent defb735 commit d0a035f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -474,6 +474,7 @@ a few examples to describe it:
{ col1: orm.not_between(123, 456) } // `col1` NOT BETWEEN 123 AND 456
{ col1: orm.like(12 + "%") } // `col1` LIKE '12%'
{ col1: orm.not_like(12 + "%") } // `col1` NOT LIKE '12%'
{ col1: orm.not_in([1, 4, 8]) } // `col1` NOT IN (1, 4, 8)
```

#### Raw queries

0 comments on commit d0a035f

Please sign in to comment.