Skip to content
This repository has been archived by the owner on Jul 5, 2019. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 1.29 KB

README.md

File metadata and controls

30 lines (24 loc) · 1.29 KB

ARCHIVED

This project has been archived, in favor of the Angel ORM: https://github.com/angel-dart/orm

query_builder

version 0.0.1 build status

Powerful, database-agnostic query builder for Dart applications.

query_builder is heavily inspired by Eloquent, and allows you to build fluent queries that run on virtually any database.

Adapters

  • in_memory - Good for development/testing purposes
  • mongo
  • postgres
  • rethink

Uses

query_builder can be used in any Dart application, whether client or server. Server-side users will find it useful because they only need to learn one DSL for any database they use.

The Angel framework already provides services, a powerful abstraction over data stores that provides CRUD functionality in addition to automatic REST API's, WebSockets and more. query_builder can be easily used with Angel to provide services for data stores that do not have their own built-in support, such as PostgreSQL or MySQL.