mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-02-11 04:49:15 -06:00
- support for querying nested relations existence/absence
- added tests for all possible overloads 😲, 28 unit tests and 14
functional tests
- added has() related proxies to the Model and Relation
- added documentation
- gcc and clang specific fixes
others:
- used clazy exclude comments instead of suppressing warnings in IDE
--- title: Prologue sidebar_position: 0 slug: / hide_table_of_contents: true description: TinyORM is a modern ORM library that makes interacting with a database extremely simple. The code is well tested with the unit and functional tests. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against a real MySQL database. --- # Prologue TinyORM is a modern ORM library that makes interacting with a database extremely simple. The code is well tested with the unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against a real MySQL database. For now, the code coverage is not ideal but is good enough to guarantee API and behavior compatibility. - [Dependencies](dependencies.mdx) - [Database: Getting Started](database.mdx) - [Database: Query Builder](query-builder.mdx) - [TinyORM: Getting Started](tinyorm.mdx) - [TinyORM: Relationships](tinyorm-relationships.mdx)