rust-ef-macros 1.5.2

Procedural macros for Rust Entity Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `linq!()` — compile-time LINQ-to-SQL.
//!
//! Single DSL entry point for all database operations. Supports three
//! syntactic forms: filter closures, multi-clause queries, and value-producing
//! configurations. See `linq!` macro docs in `lib.rs` for usage examples.

mod ast;
mod compile;
mod context;
mod expand;
mod parse;

pub use expand::expand_linq;