CouchDB
CouchDB copied to clipboard
Add QueryBuilder with fluent API
How about a QueryBuilder
that could enable stuff like this?
$result = $this->database->query()
->design('users')
->view('user-by-username')
->key($username)
->includeDocs(true)
->execute();
I already have something to start from :)
I already thought about that, its a really cool feature but it needs a lot of work to have a completly and perfect query builder. But it is on my todo list.