ORMet
ORMet is an open-source object-relational mapper designed to simplify database access by mapping relational data to in-memory domain models. It provides a code-first modeling approach in which developers declare models, fields, and relationships, and it supports migrations to evolve the database schema over time. The library emphasizes a lightweight API with a focus on portability across database engines.
ORMet supports multiple relational databases through adapters, with common targets including PostgreSQL, MySQL, and SQLite. It
Architecture-wise, ORMet consists of a core ORM engine that handles identity maps, session management, and transaction
History and development: The project is maintained by an open-source community, with contributions from individual developers
Usage and reception: ORMet is commonly used in projects that require rapid data access layers without full-stack
See also: Object-relational mapping, Active Record, Data mapper, Query builder.