ORM & Database
Runique uses SeaORM with a Django-like manager provided through the impl_objects! macro.
| Module | Description |
|---|---|
| Manager & helpers | impl_objects!, all(), filter(), get(), get_or_404(), FormEntity |
| CRUD Queries | SELECT, INSERT, UPDATE, DELETE, COUNT, search! |
| Advanced | Transactions, relations, full CRUD pattern |
Form integration: via
#[form(model = Entity)], a form exposesForm::objectsand supportssearch!(@Form => ...). See Forms — model attribute.