README.md in rasti-db-1.0.0 vs README.md in rasti-db-1.1.0
- old
+ new
@@ -170,9 +170,10 @@
posts.with_categories([1,2]) # => [Post, ...]
posts.where(id: [1,2]).raw # => [{id:1, ...}, {id:2, ...}]
posts.where(id: [1,2]).primary_keys # => [1,2]
posts.where(id: [1,2]).pluck(:id) # => [1,2]
posts.where(id: [1,2]).pluck(:id, :title) # => [[1, ...], [2, ...]]
+posts.join(:user).where(name: 'User 4') # => [Post, ...]
```
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/gabynaiman/rasti-db.