rust-ef 1.6.0

Rust Entity Framework - An EFCore-inspired ORM for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `QueryBuilder<T>` — chainable query builder for entity type `T`.
//!
//! Corresponds to EFCore's `IQueryable<T>`. The struct and core constructors
//! live in `core.rs`; filter/ordering/pagination methods in `filter.rs`;
//! include/JOIN methods in `join.rs`; GROUP BY/HAVING/window/CTE/set-op/
//! aggregate/projection methods in `aggregate.rs`; and SQL compilation /
//! terminal execution methods in `terminal.rs`.

mod aggregate;
mod core;
mod filter;
mod join;
mod terminal;

pub use core::QueryBuilder;