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
//! `cursor!` requires its key to be an `@id` or `@unique` column.
//! Targeting `name` (non-unique) should error with a span at the key.

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

fn main() {
    let _c = prax_orm::cursor!(User, {
        name: "Alice",
    });
}