prax-orm 0.10.0

A next-generation, type-safe ORM for Rust inspired by Prisma
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shape macros require a model that exists in the schema. Passing
//! a misspelled or fictional model should emit an "unknown model"
//! diagnostic with a "did you mean" suggestion.

prax_orm::prax_schema!("prax/schema.prax");

fn main() {
    let _w = prax_orm::r#where!(Useer, {
        id: { equals: 1 },
    });
}