tork-orm-core 0.1.0

Core runtime for the Tork ORM: dialect-agnostic query model, typed columns, and database drivers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The backend-neutral query model: typed columns, the expression and statement
//! AST, and the [`QuerySet`] builder that assembles and runs queries.

pub mod ast;
pub mod column;
pub mod expr;
pub mod func;
pub mod projection;
pub mod queryset;
pub mod union;
pub mod write;

pub use queryset::{Page, QuerySet};
pub use union::UnionQuery;