ORM & Database

ORM & Database

Runique uses SeaORM with a Django-like manager provided through the impl_objects! macro.

ModuleDescription
Manager & helpersimpl_objects!, all(), filter(), get(), get_or_404(), FormEntity
CRUD QueriesSELECT, INSERT, UPDATE, DELETE, COUNT, search!
AdvancedTransactions, relations, full CRUD pattern

Form integration: via #[form(model = Entity)], a form exposes Form::objects and supports search!(@Form => ...). See Forms — model attribute.