tideorm 0.9.7

A developer-friendly ORM for Rust with clean, expressive syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Hidden TideORM ORM facade.
//!
//! Macro-generated code should target this module rather than binding directly
//! to engine-specific paths. That gives TideORM one public compatibility seam for the
//! current ORM engine while the runtime is decoupled piece by piece.

#![allow(unused_imports)]

pub use sea_orm::*;
pub use sea_orm::{DbBackend as OrmBackend, DbErr as OrmError};
pub use sea_orm::{entity, sea_query, sqlx};